Wijmo UI for the Web
allowPaging フィールド

ユーザーがデータページの移動に使用できるページングボタンをグリッドに表示するかどうかを決定します。各ページのデータの行数は pageSize オプションを使用して設定します。

デフォルト値: false

型: Boolean

シンタックス
Javascript (Usage) 
$(function () {
    
    //値を取得する
    var returnsValue; //タイプ: boolean
    returnsValue = $(".selector").wijgrid("option", "allowPaging");
    
    //値を設定します
    var newValue; //タイプ: boolean
    $(".selector").wijgrid("option", "allowPaging", newValue);
        
});
Javascript (Specification) 
var allowPaging : boolean;
使用例
// Grid displays paging buttons when allowPaging is true. The pageSize here sets 5 rows to a page.
$("#element").wijgrid({ allowPaging: true, pageSize: 5 });
解説

このオプションを true に設定すると、pageSizepageIndexpagerSettings の各オプションが有効になります。

ページング」のサンプルに、すべてのページオプションのデモがあります。

関連トピック

参照

options タイプ
pageIndex オプション
pagerSettings オプション
pageSize オプション
scrollMode オプション
wijgrid jQuery ウィジェット

 

 


Copyright © GrapeCity inc. All rights reserved.