<h:commandButton> tag help
Im trying to use the commandbutton tag for my navigation but it is not working.
below is my code and my faces-config navigation rule.
<h:commandButton image="/m-bank/images/about.bmp" action="about"/>
<navigation-rule>
<from-view-id>/m-bank.jsp</from-view-id>
<navigation-case>
<from-outcome>signin</from-outcome>
<to-view-id>/m-sign.jsp</to-view-id>
</navigation-case>
</navigation-rule>
These are inside an <h:form>.
How do i get the the commandbutton to work and navigate to the next page.
Any help anyone.
Thanks

