我在使用 Primefaces 3.2 和 JSF 2.1 时遇到了一些麻烦。
我的代码是这样的:
<p:toolbar id="jeditortoolbar" styleClass="jeditortoolbar">
<p:toolbarGroup align="left" height="25" style="height:25px">
<p:commandButton type="button" title="#{msg.beenden}"/>
<p:commandButton type="button" title="#{msg.neu}"/>
</p:toolbarGroup>
</p:toolbar>
当我看一下 Primefaces Showcase 我的 p:commandButton 需要
actionListener="#{myBean.myActionMethod}"
我的 Bean 需要一个类似的方法
public void myActionMethod(){}
我的标签h:form
周围有一个!p:toolbar
我的 Bean 是 ViewScoped。
我的解决方法在*.xhtml
文件中
<p:commandButton type="button" title="#{msg.neu}" onclick="addNewEmptyFile()"/>
<p:remoteCommand name="addNewEmptyFile" update=":codeTabForm">
<f:setPropertyActionListener value="#{true}" target="#{myBean.myEvent}"/>
</p:remoteCommand>
在 MyBean.java 中
private String myEvent;
public void setMyEvent(String value){ myActionMethod();}
这对我有用,但我认为这是非常脏的代码。
每个人都可以帮助我吗?