int visibleRows = 4;
KongaTable table = ComponentFactories.tableFactory().newTable(tableModel, visibleRows);
TableStyles.normal().makeOver(table);
table.setTerminateEditOnFocusLost(true);
table.setCellRendererFor(Model.OBJECT, new ObjectRenderer());
TableIntegerEditor countEditor = new TableIntegerEditor();
countEditor.setClickCountToStart(1);
table.setCellEditorFor(Model.USE_COUNT, countEditor);
return new KongaRowTable(table);
}