This content has been marked as final.
Show 5 replies
-
1. Re: Navigation problem with PB 3.2 Final
pmensik May 27, 2013 8:40 AM (in response to burningsky)How do you forward to your page?Paste the code please so we can look at it.
-
2. Re: Navigation problem with PB 3.2 Final
burningsky May 27, 2013 8:59 AM (in response to pmensik)I tried to use simple JSF navigation, something like this <h:commandButton value="#{msg['ADM_HEADER']}" action="/adminPanel.xhtml" /> Also I tried to use dynamic navigation with action method, with the same result
-
3. Re: Navigation problem with PB 3.2 Final
pmensik May 27, 2013 9:15 AM (in response to burningsky)Try
<
h:outputLink
value
=
"#{facesContext.externalContext.requestContextPath}/adminPanel.xhtml"
>
<
f:param
name
=
"javax.portlet.faces.ViewLink"
value
=
"true"
/>
</
h:outputLink
>
You can also go through Navigation section in the docs for further explanation.
-
4. Re: Navigation problem with PB 3.2 Final
burningsky May 27, 2013 10:36 AM (in response to pmensik)Unfortunately It didn't help too (same result).
-
5. Re: Navigation problem with PB 3.2 Final
kenfinni May 28, 2013 11:00 AM (in response to burningsky)You shouldn't need to specify the full xhtml file name in the command button.
From your example above, the following should work:
<h:commandButton value="#{msg['ADM_HEADER']}" action="adminPanel" />
Ken