I have a main grid with track changes enabled.
In the “cellSave” of the detail grid I update a value in the data of the parent main grid. The new value shows as expected.
However, when doing:
var changes = $gridMain.pqGrid("getChanges", {
format: 'byVal'
});
Does not return the changes that were made from the detail grid.
It looks like track changes were not triggered. Is it possible to trigger this and how can that be done?
Thank you!