标签: jsf primefaces
我正构建一个treetable来显示数据。我还有一个文本字段和一个按钮来更新treetable中的数据。如何在不刷新页面的情况下更新treetable?
我试过像
<h:commandButton value="Submit" action="#{treeBean.update()}"> <f:ajax render="treeTableID" /> </h:commandButton>
但它不起作用。那我该怎么办?非常感谢!...