ColumnConfig subclass and a ComponentPlugin
that adds the ability for each row to be expanded, showing custom content that spans all the rows columns. - Events:
- BeforeExpand : RowExpanderEvent(rowExpander, model, rowIndex, bodyElement)
Fires before a row is expanded. Listeners can cancel the action by calling {@link BaseEvent#setCancelled(boolean)}. - rowExpander : this
- model : the model
- rowIndex : the row index
- bodyElement : the body element
- Expand : RowExpanderEvent(rowExpander, model, rowIndex, bodyElement)
Fires after a row is expanded. - rowExpander : this
- model : the model
- rowIndex : the row index
- bodyElement : the body element
- BeforeCollapse : RowExpanderEvent(rowExpander, model, rowIndex, bodyElement)
Fires before a row is collapsed. Listeners can cancel the action by calling {@link BaseEvent#setCancelled(boolean)}. - rowExpander : this
- model : the model
- rowIndex : the row index
- bodyElement : the body element
- Collapse : RowExpanderEvent(rowExpander, model, rowIndex, bodyElement)
Fires after a row is collapsed. - rowExpander : this
- model : the model
- rowIndex : the row index
- bodyElement : the body element
|
|