15

我在使用 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();}

这对我有用,但我认为这是非常脏的代码。

每个人都可以帮助我吗?

4

1 回答 1

13

试试这个

Bean.java

@ManagedBean
@ViewScoped
public class Bean {

    public String testButtonAction() {
        System.out.println("testButtonAction invoked");
        return "anotherPage.xhtml";
    }

    public void testButtonActionListener(ActionEvent event) {
        System.out.println("testButtonActionListener invoked");
    }

}

页面.xhtml

<p:toolbar>
  <p:toolbarGroup>
    <p:commandButton action="#{bean.testButtonAction}"/>
    <p:commandButton actionListener="#{bean.testButtonActionListener}"/>
  </p:toolbarGroup>
</p:toolbar>
于 2012-10-12T11:04:34.020 回答