silk_route11
silk_route11

Reputation: 344

set maximum number of grid rows in jqWidgets

Is that possible to set maximum number visible rows in $('#gridId').jqxGrid({})? Currently the method is like below

    `$('#gridId').jqxGrid({
        source: dataAdapter,
        autoheight: true,
        keyboardnavigation: false,
        showfilterrow: true,
        filterable: true,
        sortable: true,
        //max number of row
     });`

I am using jQWidgets v2.8.2.

Upvotes: 0

Views: 1660

Answers (1)

scripto
scripto

Reputation: 2297

You can enable the Paging feature and set the "pagesize" property. Example: jQWidgets Grid Paging

Upvotes: 1

Related Questions