Wijmo UI for the Web
sort フィールド

デフォルト値:null

データのソートの基準となる1つ以上のフィールド名を指定します。デフォルトでは、データが昇順にソートされます。ソート方向(昇順または降順)の設定の詳細については、「ISortDescriptor」を参照してください。

シンタックス
Javascript (Usage) 
var instance; //タイプ:wijmo.data.IShape;
var value; // Type: any
value = instance.sort;
Javascript (Specification) 
var sort : 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 the code example below, click the ID and Unit buttons to sort data in ascending order of the Product ID and Unit Price respectively.
$("#sortId").click(function () {
    productView.sort("Product_ID");
});
$("#sortPrice").click(function () {
    productView.sort("Unit_Price");
});

関連トピック

参照

IShape インターフェース

 

 


Copyright © GrapeCity inc. All rights reserved.