Wijmo UI for the Web
pageIndex フィールド

デフォルト値: null

ページング機能が有効なときに、現在表示されているページのインデックスを決定します。

ページング機能を有効にするには、allowPaging オプションを true に設定します。

シンタックス
Javascript (Usage) 
var instance; //タイプ:wijmo.data.IShape;
var value; // Type: number
value = instance.pageIndex;
Javascript (Specification) 
var pageIndex : 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 uses the pageIndex property to move to the next or previous page on button click.
$("#prevPage").click(function () {
    productView.pageIndex(productView.pageIndex() - 1);
});
$("#nextPage").click(function () {
    productView.pageIndex(productView.pageIndex() + 1);
});

関連トピック

参照

IShape インターフェース

 

 


Copyright © GrapeCity inc. All rights reserved.