Interface HasGroupTreeChangedHandlers
- All Superinterfaces:
HasHandlers
- All Known Implementing Classes:
CalendarView
,CubeGrid
,DateGrid
,EditTree
,ListGrid
,ListPalette
,Menu
,MenuPalette
,PickListMenu
,RecordEditor
,SelectionTreeMenu
,TableView
,TreeGrid
,TreePalette
-
Method Summary
Modifier and TypeMethodDescriptionMethods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
-
Method Details
-
addGroupTreeChangedHandler
Callback fired when agrouping
operation completes, whether it started as a direct call togroupBy()
orregroup()
or data changing, including incremental changes.If
changeType
is "groupBy",ListGrid.groupBy()
should have been called at the beginning of the operation, andListGrid.groupByComplete()
will be called immediately before this method. IfchangeType
is "regroup", thenListGrid.regroup()
should have been called at the beginning of the operation.- Parameters:
handler
- the groupTreeChanged handler- Returns:
HandlerRegistration
used to remove this handler
-