Reputation: 344
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
Reputation: 2297
You can enable the Paging feature and set the "pagesize" property. Example: jQWidgets Grid Paging
Upvotes: 1