Wijmo UI for the Web
afterCellUpdate イベント
jQuery.Event オブジェクト。
このイベントに関連付けられたデータ。
afterCellUpdate イベントハンドラは、セルが更新された後に呼び出される関数です。このイベントは特に、変更された行または列のインデックスを追跡および記録する場合に役立ちます。
シンタックス
Javascript (Usage) 
$(function () {
    %JQueryMemberName%イベントハンドラ関数を設定する 
    $(".selector").wijgrid({ 
        afterCellUpdate : function (e, args) { 
     
        } 
    });
});
Javascript (Specification) 
afterCellUpdate = function ( 
   e : Object,
   args : IAfterCellUpdateEventArgs
) { };

パラメータ

e
jQuery.Event オブジェクト。
args
このイベントに関連付けられたデータ。
使用例
// セルが更新されると、基になるデータの情報が"#log"要素にダンプされます。$("#element").wijgrid({ afterCellUpdate: function(e, args) { $("#log").html(dump($("#demo").wijgrid("data"))); }});
解説
イベントには、型と名前のいずれかで連結できます。名前でイベントに連結する場合。$("#element").wijgrid({ afterCellUpdate: function (e, args) {// ここにコードを記述します。}});型でイベントに連結する場合。$("#element").bind("wijgridaftercellupdate", function (e, args) {// ここにコードを記述します。});

関連トピック

参照

options タイプ
wijgrid jQuery ウィジェット

 

 


Copyright © GrapeCity inc. All rights reserved.