是否可以刷新 vaadin table
组件的一行?
到目前为止,如果表格行编辑完成,我只是刷新整个表格:
table.refreshRowCache();
但是这可能会导致大型表的性能问题。那么,如何刷新一行?
答案 0 :(得分:3)
我在Vaadin论坛上发现这看起来很有用:https://vaadin.com/forum/#!/thread/408555/408554
我还没有试一试,但Henri Sara(Vaadin开发人员)提出了这个解决方案:
Property statusProperty = pqTable.getContainerProperty(itemId, "statusString");
if (property instanceof MethodProperty) {
((MethodProperty) statusProperty).fireValueChange();
}
他还指出,这种方法可能会在未来版本中发生变化(可能已经这样做了:S)
答案 1 :(得分:0)
1.更新您的beanItemContainer
2。table.refreshRowCache();
示例:
beanItemContainer.getItem(itemId).getItemProperty("quantity").setValue(productEditor.getProduct().getQuantity());
table.refreshRowCache();