I found this on the Vaadin forum, which seems useful: https://vaadin.com/forum/#!/thread/408555/408554
I havenβt entered yet, but Henri Sarah (Vaadin developer) has proposed this solution:
Property statusProperty = pqTable.getContainerProperty(itemId, "statusString"); if (property instanceof MethodProperty) { ((MethodProperty) statusProperty).fireValueChange(); }
He also notes that this method may change in a future version (and may have already done this: S)
source share