We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
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 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>
-
-