I have the grid with paging. Every page has max 10 rows. if i have 3 records only i need to show 7 empty rows,
like excel sheet layout
Like this:

I got the solution :
loadComplete: function (data) {
var pagesize = jQuery("#list5").jqGrid('getGridParam', 'rowNum');
if (data.rows.length < pagesize) {
for (i = 0; i < pagesize - data.rows.length; i++) {
$("#list5").addRowData(i + 1, {});
}
}
}
If any other efficient solution is there then please let me know.
The problem with that is the page counts at the lower right are wrong: they include the blank rows. E.g. “View 91 to 100” when there are only 95 rows. Here’s a solution to that: