Hello,
I use Grid with pagesizeoptions includeing text like ‘ALL’ as below.
In this case, I noticed libary set 10 for args.pagesize.
Is this right specification?
If possible, I’d like you to set the same value as setting in pagesizeoptions.
================================
$("#RS_Status_List").jqxGrid( {
theme : "xxxx",
......
pagesizeoptions : ['17', '50', '1000', 'All'],
......
});
$("#RS_Status_List").on("pagesizechanged", function(event)
{
var args = event.args;
var pagesize = args.pagesize;
if (pagesize == 10) $("#RS_Status_List").jqxGrid( {pagesize: 1000} );
});