使用CommandButton导航无响应

时间:2014-03-20 15:35:01

标签: jsf navigation commandbutton

我的左侧菜单页面{commonMenu.xhtml)与commandButton

<body>
<h:form>
    <ui:composition>
        <ul>
            <li><a href="/project/pages/foo.xhtml">foo</a>  </li>
            <li><p:commandButton value="foo"
                    action="pages/foo" /></li>
            <li>Menu 3</li>
        </ul>
    </ui:composition>
</h:form>
 </body>
 </html>

目录树看起来像:

webapp
----->pages
---------->foo.xhtml
---------->templates
---------------->commonMenu.xhtml

问题: href工作正常,但commandButton根本不工作。可能是什么原因?

我在action尝试了不同的字符串:fooproject/pages/foopages/foo等...

1 个答案:

答案 0 :(得分:0)

我在某地读到,为了简单导航,我需要使用<p:button>而不是<p:commandButton>

并且我使用短片,例如foo,它可以正常工作

所以我只需更改commandButton部分:

<p:button value="foo" outcome="foo" />

无论如何ty