3 Replies Latest reply on May 26, 2008 5:37 AM by ilya_shaikovsky

    JSF Navigation Rules and Ajax Submit  do not cooperate

    lucab

      I have a form with an a4j:commanLink. This link is connected with an action, let's call it 'ForwardPage_Action'.

      ForwardPage Action is mapped in faces-config like this
      [note: simplified xml syntax]

      <nav-rule>
       <from>/form_page.xhtml</from>
       <case>
       <outcome>ForwardPage_Action</outcome>
       <goto>/forwarded_page.xhtml</goto>
       </case>
      </nav-rule>
      


      when the 'forwarded_page' is loaded i can read all the info as expected but the page is actually broken. None of the richfaces features will work (tooltips,panelMenu,tabs,ecc...)
      Perhaps someone can help me to fix the problem. At the moment i can't figure out why an a4j:commanLink + JSF forward should break ajax features.