我有一个带有几个操作和字段的表单,当我从字段中更改值时,需要刷新几乎所有内容。我不能放一个按钮,因为它就像一个excel工作表。
无论如何,我可以提交所有字段并更新我的ajax操作中的所有字段,而不是:
<p:ajax event="blur" update="fieldX,fieldY..." process="@this,fieldB,fieldC..." listener="#{simulator.operations}"/>
提前致谢。
答案 0 :(得分:2)
您可以使用
<p:ajax event="blur" update="@form" process="@form" listener="#{simulator.operations}"/>