Hi,
I find that if we fetch data into ListGrid from DB, then we can use following code to get record...
However, if we just use the ListGrid to add the unsaved data into ListGrid, and use the same method to get record. It seems we can not get it.
In fact, if I want to get record from unsaved records in ListGrid, how can I do this ??
Many Thx for your help.
I find that if we fetch data into ListGrid from DB, then we can use following code to get record...
Code:
listGrid.getRecordList(); listGrid.getRecords();
Code:
listGrid.setAutoSaveEdits(false); // Inside an button onclick event, we add following code listGrid.startEditingNew(); // Use following to get unsaved record, but we can not get the record. listGrid.getRecordList(); listGrid.getRecords();
Many Thx for your help.
Comment