List of usage examples for com.vaadin.ui Grid getFooterRowCount
public int getFooterRowCount()
From source file:com.haulmont.cuba.web.gui.components.WebDataGrid.java
License:Apache License
protected void initFooterRows(Grid component) { for (int i = 0; i < component.getFooterRowCount(); i++) { Grid.FooterRow gridRow = component.getFooterRow(i); addFooterRowInternal(gridRow);//from w w w. ja v a 2 s .c om } }