Hi all,
I facing some odd behaviour using t:commandLink.
On my my page, I have a t:commandLink leading to a second page via navigation rule configuration
When I click the link, the proper view is displayed but the url displayed by the browser doe not change (ex: when clicked from the home page http://localhost:8080/myApp/index.faces
, I navigate to contacts.xhtml view but url still http://localhost:8080/myApp/index.faces ).
My nav-rules are quite simple:
<navigation-case >
< from-outcome> nav.home</ from-outcome>
< to-view-id> /index.xhtml</ to-view-id>
</ navigation-case>
<navigation-case>
<from-outcome>nav.contacts</from-outcome>
<to-view-id>/contacts.xhtml</to-view-id>
</navigation-case>
Have you faced this? I'm using facelets 1.1.4 whith myfaces 1.1.3 tomahawk 1.1.2.
Any suggestion is welcome!
TIA
Harry.