Wijmo UI for the Web
pageSize フィールド

allowPaging が true に設定されてるときに 1 ページに配置する行数を指定します。

デフォルト値:10

型: number

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

このオプションを有効にするには、allowPaging を true に設定します。

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

関連トピック

参照

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

 

 


Copyright © GrapeCity inc. All rights reserved.