KongaTable table = new KongaTable(model);
int visibleRows = Math.max(model.getRowCount(), 15);
table.setVisibleRowCount(visibleRows);
table.setAutoCreateRowSorter(true);
table.setSortingStatus(Model.NAME, SortOrder.ASCENDING);
table.setCellEditorFor(Model.LEVEL, new LogLevelSelector().asTableEditor());
installTableStyle(table);
return table;
}