When I use the following command link:
<h:commandLink action="student" value="students" />
And the following navigation rule in faces-config.xml
:
<navigation-rule> <from-view-id>/home.xhtml</from-view-id> <navigation-case> <from-outcome>student</from-outcome> <to-view-id>/student.xhtml</to-view-id> </navigation-case> </navigation-rule>
Then I get the following message about the faces of the development phase:
This link is disabled because it is not embedded in the JSF form.
How is this caused and how can I solve it?
Aram gevorgyan
source share