Example usage for com.vaadin.ui Grid getFooterRowCount

List of usage examples for com.vaadin.ui Grid getFooterRowCount

Introduction

In this page you can find the example usage for com.vaadin.ui Grid getFooterRowCount.

Prototype

public int getFooterRowCount() 

Source Link

Document

Gets the number of rows in the footer section.

Usage

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
    }
}