ParamQuery grid support forum
General Category => Help for ParamQuery Grid (free version) => Topic started by: ismail.siddiqui on December 08, 2015, 03:41:17 pm
-
I have project in which i have use paramquery grid for showing search result. But there is a problem in showing data. Whenever user search for some data and request for next page, numbering of data starts from 1 .
How can i resolve this in such manner so that numbering is going on in order.
-
number column is based on rowIndxPage ( index of row on current page ).
As you want to show rowIndx, use a normal column instead of numberCell and implement its render callback
render: function( ui ){
return 1 + $(this).pqGrid('getRowIndx',{rowData: ui.rowData}).rowIndx;
}