Hi,
Currently i am bind 1500 records to grid and i am using paging and searching and sorting to this grid,
Now i am displaying records 50 per page using paging.
In Bind complete i am trying to get records that currently displayed in the grid (means 1-50)
I tryed with all these
var displayRows = $(‘#LoanActivityGrid’).jqxGrid(‘getdisplayrows’);
var rendergridrows = $(‘#LoanActivityGrid’).jqxGrid(‘rendergridrows’);
var rows = $(‘#LoanActivityGrid’).jqxGrid(‘getrows’);
These all are giving all rows binded to grid
can you please give an suggestion to get displayed records(1-50) in the page.