Hi,
I am using below verison
SmartClient Version: v11.1p_2017-07-09/PowerEdition Deployment (built 2017-07-09)
I have nested grids pointing to the same datasource.
ListGrid nestedGrid = new ListGrid();
final DataSource testDataSource = DataSource.get("test");
nestedGrid.setDataSource(testDataSource);
If i expand two nested grids and edit one, the data in the second grid also appears to be change (this should not happen). However when i refresh the page, changes in second grid are not saved.
I have written custom server side code for fetch, edit and delete based on the id in parent grid.
Please help
I am using below verison
SmartClient Version: v11.1p_2017-07-09/PowerEdition Deployment (built 2017-07-09)
I have nested grids pointing to the same datasource.
ListGrid nestedGrid = new ListGrid();
final DataSource testDataSource = DataSource.get("test");
nestedGrid.setDataSource(testDataSource);
If i expand two nested grids and edit one, the data in the second grid also appears to be change (this should not happen). However when i refresh the page, changes in second grid are not saved.
I have written custom server side code for fetch, edit and delete based on the id in parent grid.
Please help
Comment