ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: elearnster on August 07, 2014, 10:41:18 pm
-
I am trying to capture the value of a specific cell in the table and store it in a variable. Can you point me in the right direction? Since it is not the active row I need to specify the row and column and have it return the value.
Thanks in advanced.
-
you can specify the zero based row index ( rowIndx ) and field name (dataIndx ) to fetch the cell data.
var rowData = $( ".selector" ).pqGrid( "getRowData", {rowIndx : 2} );
var cellData = rowData[ dataIndx_of_field ];