Version

RowUpdateCancelAction Property

Specifies the action that should be taken when BeforeRowUpdate event is cancelled. Default value is CancelUpdate.
Syntax
'Declaration
 
Public Property RowUpdateCancelAction As RowUpdateCancelAction
public RowUpdateCancelAction RowUpdateCancelAction {get; set;}
Remarks

BeforeRowUpdate event is fired when UltraGrid is about to commit changes made by the user to a row. This event allows you to validate the input. If validation fails you can cancel the BeforeRowUpdate event which by default causes the UltraGrid to revert back to the old cell values. You may however not want to revert back to the old cell values. In which case set the RowUpdateCancelAction property to RetainDataAndActivation.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also