C1.Web.Wijmo.Controls.45 Assembly / C1.Web.Wijmo.Controls.C1GridView Namespace / C1GridView Class / RowUpdated Event

RowUpdated Event
Occurs when a row's Update button is clicked or when edits done by user in a client-side editing mode should be persisted to underlying dataset, but after the C1GridView control handles the update operation.
Syntax
'Declaration
 
Public Event RowUpdated As C1GridViewUpdatedEventHandler
 
Event Data

The event handler receives an argument of type C1GridViewUpdatedEventArgs containing data related to this event. The following C1GridViewUpdatedEventArgs properties provide information specific to this event.

PropertyDescription
Gets the number of rows affected by the update operation.  
Gets the exception (if any) that was raised during the update operation.  
Gets or sets a value indicating whether an exception that was raised during the update operation was handled in the event handler.  
Gets or sets a value that indicates whether the C1GridView control should remain in edit mode after an update operation.  
Gets a dictionary that contains the key field name/value pairs for the updated record.  
Gets a dictionary that contains the new field name/value pairs for the updated record.  
Gets a dictionary that contains the original field name/value pairs for the updated record.  
Remarks
The event occurs only if the grid is bound to a DataSource control.
See Also