Version

RowUpdated Property

Event fired after a row has been updated.
Syntax
'Declaration
 
Public Property RowUpdated As String
public string RowUpdated {get; set;}
Example
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 + "'.";

}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, 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