如何在按钮上添加预定义文本到我的p:inputTextArea?
<p:commandButton onClick="setThisTextToMyInpuTextArea"
我该怎么做? 谢谢你的回答
答案 0 :(得分:-1)
解决方案可以使用一个actionListener来调用一个设置变量值的方法,然后在commandButton中更新这个组件。 类似的东西:
<p:commandButton update="yourTextarea" actionListener="#{yourBean.setText}"/>
和方法:
public void setText(){
setVar="Text";
}