Hi,
GWT 3.0
I have a list grid with the following config:
I add a new Record in the grid
The record is successfully added to the grid.
Now if i try to click and select this newly added record , its never gets selected. The ones which were loaded initially from the datasource are selectable.
I need to select this new record to perform some operation on it, any ideas why this is not working ?
Thanks.
GWT 3.0
I have a list grid with the following config:
Code:
listGrid.setCanRemoveRecords(Boolean.TRUE); listGrid.setCanEdit(Boolean.TRUE); listGrid.setAutoSaveEdits(Boolean.FALSE); listGrid.setDeferRemoval(Boolean.TRUE);
Code:
Record newRecord = new Record(); listGrid.startEditingNew(newRecord); listGrid.endEditing();
Now if i try to click and select this newly added record , its never gets selected. The ones which were loaded initially from the datasource are selectable.
I need to select this new record to perform some operation on it, any ideas why this is not working ?
Thanks.
Comment