假设我们有按钮
<h:form>
<p:commandButton id="refreshButton" value="refresh all depending components"/>
</h:form>
在此过程中,我将添加在单击按钮时应更新的组件。所以使用 update="text1,text2" 是不够的,因为 text3 可能会在以后添加,并且不需要更改刷新按钮。
<h:outputText id="text1" value="{bean.someValue1}></h:outputText>
<h:outputText id="text2" value="{bean.someValue2}></h:outputText>
... 然后 ...
<h:outputText id="text3" value="{bean.someValue3}></h:outputText>
我想要做的是将组件绑定到按钮,而不是按钮依赖于组件