Wijmo UI for the Web
allowSorting オプション

ユーザーが列ヘッダをクリックすることによってフィールドのデータをソートできるかどうかを決定します。

デフォルト値: false

型: Boolean

シンタックス
Javascript (Usage) 
$(function () {
    
    //値を取得する
    var returnsValue; //タイプ: boolean
    returnsValue = $(".selector").wijgrid("option", "allowSorting");
    
    //値を設定します
    var newValue; //タイプ: boolean
    $(".selector").wijgrid("option", "allowSorting", newValue);
        
});
Javascript (Specification) 
var allowSorting : boolean;
使用例
// Sort a column by clicking its header when allowSorting is set to true
$("#element").wijgrid({ allowSorting: true });
解説

このオプションが true に設定されている場合、ユーザーは列ヘッダを再びクリックしてソート順序を切り替えることができます。

ソート」のサンプルにこの機能のデモがあります。

関連トピック

参照

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

 

 


Copyright © GrapeCity inc. All rights reserved.