Package com.vaadin.client.widgets
Class Grid.Footer
- java.lang.Object
-
- com.vaadin.client.widgets.Grid.StaticSection<Grid.FooterRow>
-
- com.vaadin.client.widgets.Grid.Footer
-
protected static class Grid.Footer extends Grid.StaticSection<Grid.FooterRow>
Represents the footer section of a Grid. The footer is always empty.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.vaadin.client.widgets.Grid.StaticSection
Grid.StaticSection.StaticCell, Grid.StaticSection.StaticRow<CELLTYPE extends Grid.StaticSection.StaticCell>
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
Footer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Grid.FooterRow
createRow()
Creates and returns a new instance of the row type.protected void
requestSectionRefresh()
Informs the grid that this section should be re-rendered.-
Methods inherited from class com.vaadin.client.widgets.Grid.StaticSection
addColumn, addRowAt, appendRow, getGrid, getRow, getRowCount, getRows, getVisibleRowCount, isVisible, prependRow, removeColumn, removeRow, removeRow, setGrid, setVisible, updateColSpans
-
-
-
-
Method Detail
-
createRow
protected Grid.FooterRow createRow()
Description copied from class:Grid.StaticSection
Creates and returns a new instance of the row type.- Specified by:
createRow
in classGrid.StaticSection<Grid.FooterRow>
- Returns:
- the created row
-
requestSectionRefresh
protected void requestSectionRefresh()
Description copied from class:Grid.StaticSection
Informs the grid that this section should be re-rendered.Note that re-render means calling update() on each cell, preAttach()/postAttach()/preDetach()/postDetach() is not called as the cells are not removed from the DOM.
- Specified by:
requestSectionRefresh
in classGrid.StaticSection<Grid.FooterRow>
-
-