Wijmo UI for the Web
dataLoading イベント
jQuery.Event オブジェクト。
dataLoading イベントハンドラは、wijgrid が基になるデータソースからデータの一部をロードするときに呼び出される関数です。これを使用して、動的なリモート wijdatasource を使用している場合にサーバーに送信されるデータを変更できます。
シンタックス
Javascript (Usage) 
$(function () {
    %JQueryMemberName%イベントハンドラ関数を設定する 
    $(".selector").wijgrid({ 
        dataLoading : function (e) { 
     
        } 
    });
});
Javascript (Specification) 
dataLoading = function ( 
   e : Object
) { };

パラメータ

e
jQuery.Event オブジェクト。
使用例
// このサンプルは、リモートwijdatasourceからデータの一部をロードするときに、セッションIDを設定できるようにします。$("#element").wijgrid({ data: new wijdatasource({ proxy: new wijhttpproxy({ // ここにコードを記述します。 }) }), dataLoading: function (e) { var dataSource = $(this).wijgrid("option", "data"); dataSource.proxy.options.data.sessionID = getSessionID(); }});
解説
イベントには、型と名前のいずれかで連結できます。名前でイベントに連結する場合。$("#element").wijgrid({ dataLoading: function (e) {// ここにコードを記述します。}});型でイベントに連結する場合。$("#element").bind("wijgriddataloading", function (e) {// ここにコードを記述します。});

関連トピック

参照

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

 

 


Copyright © GrapeCity inc. All rights reserved.