I am using JSF2 and GlassFish, PrimeFaces 2.1.
This works, the showCreateProfile () method gets hit, and the method returns "profileForm", and the browser redirects to this page:
<h:commandLink action="#{profileHandler.showCreateProfile}" value="#{msg.menu_createNewProfile}" />
However, this does not work, the showCreateProfile () method receives calls, and the method returns "profileForm", but the browser does not redirect the page. I tried three different things with no luck:
<p:commandLink action="#{profileHandler.showCreateProfile}" value="#{msg.menu_createNewProfile}" /> <p:commandLink action="#{profileHandler.showCreateProfile}" value="#{msg.menu_createNewProfile}" ajax="false" /> <p:commandLink action="#{profileHandler.showCreateProfile}" value="#{msg.menu_createNewProfile}" ajax="false" immediate="true"/>
Any ideas what I'm doing wrong?
Rob
Robert Hume
source share