ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: prerak.patel@linde.com on March 17, 2022, 05:36:36 pm
-
Hi,
I have used nested grid to show details on my page.
When I update data in parent row and nested grid, both - data for parent row and child grid - is updated successfully.
But when only data in child grid (detail model) is updated, it is marking it dirty, still data is not saved - may be because there's no change in parent row.
How can I get this working in all scenarios?
-
How have you set up parent and child grids?
is the data of child grid coming from a different remote table than that of parent grid?
Is it local data or lazy loading for nested grid?
Could you share a jsfiddle so that I can look into it.
-
https://jsfiddle.net/ka2705/1sdf0zrv/1/
-
Please use later version which allows you to extract rowIndx from rowData ( rowData.pq_ri )
Steps:
Add a hidden boolean field e.g., "changed" in main grid.
Pass on reference to rowData to ProjectDataFT method.
Add a change event handler in detail grid to signal the main grid about the change.
change: function(evt, ui) {
grid.updateRow({
rowIndx: rowData.pq_ri,
newRow: {
'changed': true
}
});
},