HI,
how can I request repaint of a single table row? I have a table and an edit form. The table has an edit button. When I click the button, I want the table row to be displayed italic while the entity is in edit mode.
I could make the styles possible by:
table.setCellStyleGenerator(new Table.CellStyleGenerator() {
@Override
public String getStyle(Table source, Object itemId, Object propertyId) {
if (propertyId == null && itemId != null && itemId.equals(itemIdBeingEdited)) {
return "editstyle";
}
return null;
}
});
But how can I refresh that single row after click=