ParamQuery grid support forum
General Category => Help for ParamQuery Grid (free version) => Topic started by: Pisga on September 20, 2023, 08:36:50 pm
-
I have 3 nested grids, all grids are not editable, but has cells with buttons to open popup for updating row data
When the popup closed, row data must be refreshed
I can reload main grid, but all nested grids will be closed after, and I want save them opened and save my current selection on current nested grid
Exists command refreshRow, but what do to, if I want refresh a row on Second or Last level grid?
How I can find my open nested grid and current row index in it ?
Thank you very much
-
Reference to detail grid can be obtained from corresponding rowData as
var detail_grid = $(rowData.pq_detail.child).pqGrid( 'instance' );
//now call any method on detail grid,
detail_grid.refreshRow()
or
detail_grid.updateRow()
-
Thank you very much, the solution works OK !