Package com.smartgwt.client.data.events
Interface HasDataArrivedHandlers
- All Superinterfaces:
HasHandlers
- All Known Implementing Classes:
FilteredList
,ResultSet
-
Method Summary
Modifier and TypeMethodDescriptionaddDataArrivedHandler
(DataArrivedHandler handler) Notification fired when data has arrived from the server and has been successfully integrated into the cache.Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
-
Method Details
-
addDataArrivedHandler
Notification fired when data has arrived from the server and has been successfully integrated into the cache.When
dataArrived()
fires, an immediate call togetRange()
with thestartRow
andendRow
passed as arguments will return a List with noloading markers
.Note that
dataArrived()
won't fire in the case of the owning component filtering with unchanged criteria (for example usingListGrid.fetchData()
orListGrid.filterData()
). To support backward compatibility, the propertyreapplyUnchangedLocalFilter
can be set to forcedataArrived()
to be called if the ResultSet isfiltering locally
and the criteria haven't changed but are narrower than the criteria used to fetch the current cache.- Parameters:
handler
- the dataArrived handler- Returns:
HandlerRegistration
used to remove this handler
-