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
loadComplete: function (data) { //set our "ALL" select option to the actual number of found records $(".ui-pg-selbox option[value='ALL']").val(data.records); }
This changes the "ALL" option to the actual number of records in the dataset.