com.smartgwt.client.widgets.grid.events
Interface HasDataArrivedHandlers

All Superinterfaces:
HasHandlers
All Known Implementing Classes:
ListGrid, Menu, TreeGrid

public interface HasDataArrivedHandlers
extends HasHandlers


Method Summary
 HandlerRegistration addDataArrivedHandler(DataArrivedHandler 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.
 
Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
 

Method Detail

addDataArrivedHandler

HandlerRegistration addDataArrivedHandler(DataArrivedHandler 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(com.smartgwt.client.widgets.grid.ListGridRecord[]) 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 com.smartgwt.client.data.ResultSet#dataArrived firing on the data object.

Parameters:
handler - the dataArrived handler
Returns:
HandlerRegistration used to remove this handler