Me.WebDataGrid1.Behaviors.EditingCore.EditingClientEvents.RowUpdated = "WDG1_RowUpdated"
this.WebDataGrid1.Behaviors.EditingCore.EditingClientEvents.RowUpdated = "WDG1_RowUpdated";
// The client event RowUpdated takes two parameters sender and e // sender is the object which is raising the event // e is the RowUpdatedEventArgs function WDG1_RowUpdated(sender, e) { //Returns reference to the row that is being updated var row = e.get_row(); //Returns the index of the row var index = row.get_index(); window.status = "Successfully updated the row with index '" + index + "'."; }