I may not be describing what I am needing very well. I will try to do better here.
This is how I am getting the rowIndex in the first place:
var rowIndx = ui.rowIndx;
Both of the statements get their respective recId numbers just fine:
var recID = $grid.pqGrid("getRecId", { rowIndx: rowIndx });
var recId_page = $grid.pqGrid("getRecId", { rowIndxPage: rowIndxPage });
What I am really looking for is the ability to get the value displayed in the numberCell column (row count), for a particular row, so I can make a comparison against it. I want to be able to catch the last row currently being displayed, regardless of how many pages of rows are in the current dataset. If I could get the values in the numberCell column, that would do it. Is that value available in ether of the following?
var rowData = $grid.pqGrid("getRowData", { rowIndx: rowIndx });
var rowData_page = $grid.pqGrid("getRowData", { rowIndxPage: rowIndxPage });
If so, would have a suggested get for them? If not, could you please suggest an approach for getting that numberCell value OR an alternative?