We have a requirement where we have to bind thousands (Aprox 6K) of records to jqgrid, to avoid performance issues I have been told to use Pagination. So, the requirement is to write a stored procedure which can get 100 records each time (we can use offset and fetchnext), then I have to display these 100 records in jqgrid with the pagesize as 10 (e.g 100 records in slots of 10 or 20 ).
So, for this we need custom numeric pager for jqgrid with "previous 100", "Next 100" as buttons, on click of which we make a call to DB to fetch the data accordingly.
We are not so familiar with stored procedure, js, jquery, javascript. I have searched a lot but not able to understand how to achieve the exact implementation of above mentioned scenario.
Kindly provide your assistance.