1 Reply Latest reply on Jul 17, 2008 11:03 AM by deanhiller2000

    prevent going to page since no cid exists?

    deanhiller2000

      I have a wizard, page1, page2, page3.  When I am not logged in, I navigate to page2 and here is my pages.xml for page2...



          <page view-id="/secure/newPosition2.xhtml"          no-conversation-view-id="/secure/newPosition.xhtml">    
              
              <action if="#{validation.failed}" execute="#{positionWizard.invalid}"/>
              
              <navigation from-action="#{positionWizard.thirdPage}">    
                  <rule if="#{positionWizard.secondPageValid}">
                      <redirect view-id="/secure/newPosition3.xhtml"/>
                  </rule>
              </navigation>
          </page>  



      Why is it not redirecting me to newPosition.xhtml like I thought it would?