wijmo.grid.wijgrid 名前空間 > options タイプ : afterCellUpdate イベント |
Javascript (Usage) | |
---|---|
$(function () { %JQueryMemberName%イベントハンドラ関数を設定する $(".selector").wijgrid({ afterCellUpdate : function (e, args) { } }); }); |
Javascript (Specification) | |
---|---|
afterCellUpdate = function ( e : Object, args : IAfterCellUpdateEventArgs ) { }; |
// セルが更新されると、基になるデータの情報が"#log"要素にダンプされます。$("#element").wijgrid({ afterCellUpdate: function(e, args) { $("#log").html(dump($("#demo").wijgrid("data"))); }});