Vaadin table.select(itemId) is not working
问题 I have a table bind to a SQLContainer and a insert button (that insert a row in the table) When the button is clicked it execute the below code of the listener: Object itemId = table.addItem(); container.getContainerProperty(itemId, "cedula").setValue(cedulaS); try { container.commit(); table.select(itemId); catch (UnsupportedOperationException e) { //bla } The row is properly inserted BUT I want that automatically the row be selected but the select method is not working any idea? EDIT: The