我有一个与Bean绑定的OutputText,它运行一个更新OutputText文本的特定函数,此OutputText还有一个指向Button的partialTrigger,这使得该函数在按下按钮时运行。
我想要的是,当按下一个按钮但按下Button1或Button2时,OutputText上的这个绑定将被激活。
<af:outputText id="ot19" value="No Entity Selected" binding="#{newBean.presentOutputText}" partialTriggers="b1"/>
在partialTriggers =“b1”上,我希望有一些东西为partialTriggers =“b1或b2”
如何做到这一点?
由于
答案 0 :(得分:3)
你想这样做
<af:outputText id="ot19" value="No Entity Selected" binding="#{newBean.presentOutputText}" partialTriggers="b1 b2"/>
过去,我遇到了outputText没有响应partialTriggers的问题。在这种情况下,您可能希望使用<inputText readOnly=true />