Wijmo UI for the Web
rendering イベント
jQuery.Event オブジェクト。
rendering イベントハンドラは、wijgrid がレンダリングされる直前に呼び出される関数です。通常は、このイベントを使用する必要はありません。
シンタックス
Javascript (Usage) 
$(function () {
    %JQueryMemberName%イベントハンドラ関数を設定する 
    $(".selector").wijgrid({ 
        rendering : function (e) { 
     
        } 
    });
});
Javascript (Specification) 
rendering = function ( 
   e : Object
) { };

パラメータ

e
jQuery.Event オブジェクト。
使用例
$("#element").wijgrid({ rendering: function (e) { alert("rendering"); }});
解説
イベントには、型と名前のいずれかで連結できます。名前でイベントに連結する場合。$("#element").wijgrid({ rendering: function (e) {// ここにコードを記述します。}});型でイベントに連結する場合。$("#element").bind("wijgridrendering", function (e) {// ここにコードを記述します。});

関連トピック

参照

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

 

 


Copyright © GrapeCity inc. All rights reserved.