Wijmo UI for the Web
pageSize Field
wijmo.data Namespace > IShape Interface : pageSize Field
Determines the number of records to be displayed on a page. To display all records, set the pageSize to 0.
Syntax
var instance; // Type: wijmo.data.IShape;
var value; // Type: number
value = instance.pageSize;
var pageSize : number;
Example
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);
      });
See Also

Reference

IShape Interface
pageSize Field