I'm using jqgrid in my project. I have huge amount of data which have to be load by paging. Is there a way to set total pages of paging to Many value.
jqGrid has recordtext
option which will be set to default value (something like "View {0} - {1} of {2}") inside of language specific file grid.locale-XX.js
which you use. If you would use instead the option recordtext: "View {0} - {1} of many"
the user will see in the pager the modified text. The text in the pager will be displayed only in combination with the option viewrecords: true
. See the documentation for more details.