Nothing is fired. is normal this behavior
[docs]
Add a dataArrived handler.
Notification method fired when new data arrives from the server to be displayed in this ListGrid, (for example in response to the user scrolling a new set of rows into view). Only applies to databound listGrids where the data attribute is a com.smartgwt.client.data.ResultSet. This ResultSet may have been created manually and applied to the grid via a call to ListGrid.setData or may have been created and automatically assigned if ListGrid.fetchData was used to populate the grid. This method is fired directly in response to dataArrived() firing on the data object.
Code:
GridSource.fetchData(new.....................ute(DSResponse response, Object rawData, DSRequest request) { Grid_editor.setData(response.getData()); loading = 0; }}); Grid_editor.addDataArrivedHandler(new DataArrivedHandler() { public void onDataArrived(DataArrivedEvent event) { SC.say("test"); } });
[docs]
Add a dataArrived handler.
Notification method fired when new data arrives from the server to be displayed in this ListGrid, (for example in response to the user scrolling a new set of rows into view). Only applies to databound listGrids where the data attribute is a com.smartgwt.client.data.ResultSet. This ResultSet may have been created manually and applied to the grid via a call to ListGrid.setData or may have been created and automatically assigned if ListGrid.fetchData was used to populate the grid. This method is fired directly in response to dataArrived() firing on the data object.
Comment