Wijmo UI for the Web
filter フィールド

デフォルト値:null

レコードセット内のデータに対するフィルタを含むバリアントを設定または返します。フィルタを使用すると、指定した条件を満たすレコードを取得できます。

シンタックス
Javascript (Usage) 
var instance; //タイプ:wijmo.data.IShape;
var value; // Type: any
value = instance.filter;
Javascript (Specification) 
var filter : any;
使用例
The Quick Start sample shows a similar implementation using Knockout. To use the property without using KnockOut, use the document ready function as in this example.
$(document).ready(function () {
            var productView = new wijmo.data.ArrayDataView(sourceData());

            $("#demo-grid").wijgrid({ 
                data: productView, 
            });
In this example, the filtering criteria is set to Category Id of products. Click the Beverages button to display all the beverage items with Category Id 1.
$("#clearFilter").click(function () {
    productView.filter(null);
});
$("#filterBeverages").click(function () {
    productView.filter({ Category_ID: 1 });
});

関連トピック

参照

IShape インターフェース

 

 


Copyright © GrapeCity inc. All rights reserved.