wijmo.grid.wijgrid 名前空間 > options タイプ : 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 に設定すると、pageSize、pageIndex、pagerSettings の各オプションが有効になります。
「ページング」のサンプルに、すべてのページオプションのデモがあります。
options タイプ
pageIndex オプション
pagerSettings オプション
pageSize オプション
scrollMode オプション
wijgrid jQuery ウィジェット