DVXP TEdit.NET 3.0

TableEditor.AfterRowUpdate Event

Fired just after a row change (add, edit, delete) is applied to the database. For added rows, the column values in the Row can be accessed to retrieve any autoincrement values generated by the database backend. For deleted rows, the fields are no longer accessible at the time this event is fired. If you need to access data from a deleted row in the AfterRowUpdate event, you should copy the fields to temporary variables in the BeforeRowUpdate event, and then access the saved values when the AfterRowUpdate event fires. See the items.aspx page in the DXTrack sample application.

[Visual Basic]
Public Event AfterRowUpdate As AfterRowUpdateEventHandler
[C#]
public event AfterRowUpdateEventHandler AfterRowUpdate;

Event Data

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

PropertyDescription
Action The type of update action performed on the row
Row The row that was updated, added or deleted

See Also

TableEditor Class | DVXP.DXTableEditor Namespace