Interface DataArrivedHandler
- All Superinterfaces:
- EventHandler
- 
Method SummaryModifier and TypeMethodDescriptionvoidonDataArrived(DataArrivedEvent event) Notification method fired whenever this TreeGrid receives new data nodes from the dataSource.
- 
Method Details- 
onDataArrivedNotification method fired whenever this TreeGrid receives new data nodes from the dataSource. Only applies to databound TreeGrids wheredatais aResultTree- either explicitly created and applied viasetData()or automatically generated via afetchData()call.Note that dataArrived(), unlikeTreeGrid.dataChanged(), only fires in limited circumstances - when data for aResultTreearrives from the server due to a fetch or cache invalidation, or as a result of filtering. If you want to catch all data changes, you should instead react toTreeGrid.dataChanged().- Parameters:
- event- the event
 
 
-