Hi Isomorphic;
My SmartGWT version is: 'v11.0p_2017-02-11/PowerEdition Deployment (built 2017-02-11)'.
My application is using SmartGWT + Spring + Hibernate.
I have a listGrid where i am using grid.setData(recordList) to add data to the grid (no automatic fetch from DataSource).
I have also set a dataSource to the grid and to add a new row i use grid.startEditingNew().
Now if i set: grid.setFilterLocalData(true), grid.startEditingNew() create a row at client side but does not send 'add' call to server ans so row does not get added to the DB.
Without grid.setFilterLocalData(true) it works fine.
Could you please help on this?
My SmartGWT version is: 'v11.0p_2017-02-11/PowerEdition Deployment (built 2017-02-11)'.
My application is using SmartGWT + Spring + Hibernate.
I have a listGrid where i am using grid.setData(recordList) to add data to the grid (no automatic fetch from DataSource).
I have also set a dataSource to the grid and to add a new row i use grid.startEditingNew().
Now if i set: grid.setFilterLocalData(true), grid.startEditingNew() create a row at client side but does not send 'add' call to server ans so row does not get added to the DB.
Without grid.setFilterLocalData(true) it works fine.
Could you please help on this?
Comment