Version

RowUpdating Property

Event fired before a row is updated.

This event is cancelable.

Syntax
'Declaration
 
Public Property RowUpdating As String
public string RowUpdating {get; set;}
Example
Me.WebDataGrid1.Behaviors.EditingCore.EditingClientEvents.RowUpdating = "WDG1_RowUpdating"
this.WebDataGrid1.Behaviors.EditingCore.EditingClientEvents.RowUpdating = "WDG1_RowUpdating";
// The client event RowUpdating takes two parameters sender and e
       // sender  is the object which is raising the event
       // e is the CancelUpdateRowEventArgs

       function WDG1_RowUpdating(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 = "Updating 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