Interface HasDataArrivedHandlers
- All Superinterfaces:
 HasHandlers
- All Known Implementing Classes:
 TileGrid,TilePalette
- 
Method Summary
Modifier and TypeMethodDescriptionaddDataArrivedHandler(DataArrivedHandler handler) Notification method fired when new data arrives from the server to be displayed in this tileGrid, (for example in response to the user scrolling a new set of tiles into view).Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent 
- 
Method Details
- 
addDataArrivedHandler
Notification method fired when new data arrives from the server to be displayed in this tileGrid, (for example in response to the user scrolling a new set of tiles into view). Only applies to databound tileGrid where thedataattribute is aResultSet. This method is fired directly in response todataArrived()firing on the data object.- Parameters:
 handler- the dataArrived handler- Returns:
 HandlerRegistrationused to remove this handler
 
 -