thanks to reply
I already tried pagerrenderer it works but one problem with that i am using virtualmode = true so my all request to server side and it always shows
1-10 of n-records and not correct after next page click. Please guide me how i can show correct text after hit next/previous button like
` $(“#jqxgrid”).on(‘pagechanged’, function () {
var datainfo = $(“#jqxgrid”).jqxGrid(‘getdatainformation’);
var paginginfo = datainfo.paginginformation;
self.label.text(1 + paginginfo.pagenum * paginginfo.pagesize + “-” + Math.min(datainfo.rowscount, (paginginfo.pagenum + 1) * paginginfo.pagesize) + ‘ of ‘ + datainfo.rowscount);
});