Wijmo UI for the Web
pageSize フィールド
1ページに表示するレコード数を決定します。すべてのレコードを表示するには、pageSize を 0 に設定します。
シンタックス
Javascript (Usage) 
var instance; //タイプ:wijmo.data.IShape;
var value; // Type: number
value = instance.pageSize;
Javascript (Specification) 
var pageSize : number;
使用例
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, 
                allowPaging: true
            });
This example changes the pageSize to 4 or 0 on clicking the buttons.
$("#pageSize0").click(function () {
          productView.pageSize(0);
      });
$("#pageSize4").click(function () {
          productView.pageSize(4);
      });

関連トピック

参照

IShape インターフェース
pageSize フィールド

 

 


Copyright © GrapeCity inc. All rights reserved.