jqGrid exposes a property rowNum where you can set the number of rows to display for each page. How do you set the grid to just display ALL rows?
rowNum
Right
This works:
// Step1 - defines the rows jqGridOptions.rowList =[10, 50, 100, 500, 'All']; ... ... // Step2 - Change the 'All' to a meaningful value loadComplete: function (data) { $(".ui-pg-selbox option[value='All']").val(1000); }