バージョン

RowUpdated プロパティ

行の更新後に発生するイベント。
シンタックス
'宣言
 
Public Property RowUpdated As String
public string RowUpdated {get; set;}
使用例
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 + "'.";

}
参照