Search in sources :

Example 1 with RowsCount

use of com.haulmont.cuba.gui.components.RowsCount in project cuba by cuba-platform.

the class DataGridLoader method loadRowsCount.

protected void loadRowsCount(DataGrid component, Element element) {
    Element rowsCountElement = element.element("rowsCount");
    if (rowsCountElement != null) {
        RowsCount rowsCount = factory.createComponent(RowsCount.class);
        rowsCount.setOwner(component);
        component.setRowsCount(rowsCount);
    }
}
Also used : RowsCount(com.haulmont.cuba.gui.components.RowsCount) Element(org.dom4j.Element)

Aggregations

RowsCount (com.haulmont.cuba.gui.components.RowsCount)1 Element (org.dom4j.Element)1