How to get the edited (unsaved) rows of a listgrid with .setAutoSaveEdits(false)?
Announcement
Collapse
No announcement yet.
X
-
Hi edulid,
although it does not answer your question, did you see the UnsavedRecords docs?
Best regards,
Blama
-
Originally posted by Isomorphic View PostTake a look at the Grid Editing overview - extensive discussion covering a few different options like getEditValues() or getEditedRecord().
The listGrid API has listGrid.getSelectedRecords(), but not listGrid.getEditedRecords() ?
So, if I don't miss something, the only way to find this out is:
Code:for (int i = 0; i <= usersLG.getRecords().length - 1; i++) { if (!usersLG.getEditValues(i).isEmpty()) { //The row was edited!! } }
Comment
Comment