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