Wijmo UI for the Web
filtered イベント
jQuery.Event オブジェクト。
このイベントに関連付けられたデータ。
filtered イベントハンドラは、wijgrid がフィルタリングされた後に呼び出される関数です。
シンタックス
Javascript (Usage) 
$(function () {
    %JQueryMemberName%イベントハンドラ関数を設定する 
    $(".selector").wijgrid({ 
        filtered : function (e, args) { 
     
        } 
    });
});
Javascript (Specification) 
filtered = function ( 
   e : Object,
   args : IFilteredEventArgs
) { };

パラメータ

e
jQuery.Event オブジェクト。
args
このイベントに関連付けられたデータ。
使用例
// $("#element").wijgrid({ filtered: function (e, args) { alert("The filtered data contains: " + $(this).wijgrid("dataView").count() + " rows"); }});
解説
イベントには、型と名前のいずれかで連結できます。名前でイベントに連結する場合。$("#element").wijgrid({ filtered: function (e, args) {// ここにコードを記述します。}});型でイベントに連結する場合。$("#element").bind("wijgridfiltered", function (e, args) {// ここにコードを記述します。});

関連トピック

参照

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

 

 


Copyright © GrapeCity inc. All rights reserved.