このイベントはキャンセルできます。
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 + "'..."; }