my left menu page (commonMenu.xhtml
) with 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>
directory tree look like:
webapp
----->pages
---------->foo.xhtml
---------->templates
---------------->commonMenu.xhtml
Problem:
href
is working perfectly, however commandButton is not working at all. What can be a reason?
i tried diffrent strings in action
: foo
, project/pages/foo
, pages/foo
etc...