Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
110
How to custom bind paging drop down data?
posted

Is there anyway to bind the custom paging like below:

My logic is that...

#1. service return search result 9 rows to bind to igGrid (type = remote).

#2. service also return the total search result for example 100 rows.

#3. use step #2 to custom to paging. because now igGrid paging is showing only the 9 rows returned data, I'd like igGrid to use step #2 to show the paging not use step #1. for the search performance reason, remote is the right way to do it. but only the paging that i need to be custom.

#4. if i click next page (page 2) so I will sent out the search parameter to the service like search the same criteria but return row 10 - 18 then return back to bind to igGrid.

Thank you.