本文介绍了@all在JSF Ajax中不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
此行位于表单标记内:
<p:commandLink actionListener="#{questionBean.removeQuestion(question)}"
value="Delete" styleClass="delete" update="@all"/>
但是,它仅适用于 @form
。当我有 @all
时,没有任何事情发生。我希望不仅能够更新表单,还能更新页面的其他部分。
However, it only works with @form
. Nothing happens when I have @all
. I want to be able to update not only the form but also other parts of the page.
推荐答案
似乎 update =@ all
不支持primefaces
Seems that update="@all"
not supported by primefaces
虽然它有点差异问题
但是仍然可以说几次
另一个参考:
这篇关于@all在JSF Ajax中不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!