use of org.gwtbootstrap3.client.ui.constants.ColumnSize in project ovirt-engine by oVirt.
the class AbstractFormPanel method createRow.
private Row createRow(int numOfColumns) {
Row row = new Row();
// Evenly distribute by default.
String columnSize = COL_PREFIX + (BOOTSTRAP_GRID_SIZE / numOfColumns);
for (int i = 0; i < numOfColumns; i++) {
Column column = new Column(columnSize);
row.add(column);
}
return row;
}