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;
}