I have a ListGrid that is populated with records and with setAutoSaveEdits(false). One of the fields in each grid record is a nested RecordList containing related child records.
I'm using other UI components to edit the nested child records in each ListGrid record and I want to track those pending changes like any other field in the main ListGrid record, so that those changes are recognized when I call saveAllEdits().
If it was a simple text field I would use grid.setEditValue(rowNum, "childField", newValue) but there is no version of setEditValue that takes a Record[] as the newValue parameter.
Is there another way to apply changes to the nested child records so that the main grid record is flagged for update when I call grid.saveAllEdits()?
I'm using other UI components to edit the nested child records in each ListGrid record and I want to track those pending changes like any other field in the main ListGrid record, so that those changes are recognized when I call saveAllEdits().
If it was a simple text field I would use grid.setEditValue(rowNum, "childField", newValue) but there is no version of setEditValue that takes a Record[] as the newValue parameter.
Is there another way to apply changes to the nested child records so that the main grid record is flagged for update when I call grid.saveAllEdits()?
Comment