In my application we have windows to create new/update records for some entities. Everything was working fine before 13 upgrade but now we see issues with thsi particular method startEditingNew() where it randomly adds the data to teh records. So our new window is supposed to create new records starting from 1 and update window should display existing records and we can also add new entries to existing data so it should update. But what we see for NEW there is DS fetch being called internally on calling startEditingNew() method to add new entries to window. We can surely say that its from gwt because I added loggers before and after this method call and I see the totalrecordscount mismatch. Snippet of code->LogHelper.log("new Record 7 : "+ skeletonLocationsGrid.getTotalRows());
skeletonLocationsGrid.startEditingNew(defaultValues);
LogHelper.log("new Record 8 : "+ skeletonLocationsGrid.getTotalRows());
And here's the console output.
Ideally teh count should become 1 but from somwhere its adding 1000 not sure from where. Could you please suggest if there is any alternate way to use this?
skeletonLocationsGrid.startEditingNew(defaultValues);
LogHelper.log("new Record 8 : "+ skeletonLocationsGrid.getTotalRows());
And here's the console output.
Ideally teh count should become 1 but from somwhere its adding 1000 not sure from where. Could you please suggest if there is any alternate way to use this?
Comment