1 Reply Latest reply on Apr 4, 2007 10:13 AM by shane.bryzak

    How to well form navigation for extended el

    statelessbean

      hi,
      i have action

      <s:link value="some text" action='#{rocketCenterAction.showDetailedUnit("26")}' />
      


      and declaration in pages.xml
      <page view-id="/pages/RocketCenter.xhtml">
       <restrict>#{s:hasRole('user')}</restrict>
      
       <navigation from-action="#{showDetailedViewAction.showDetailedUnit}">
       <redirect view-id="/pages/AnotherPage.xhtml"/>
       </navigation>
       </page>
      


      method seems to be excecuted (tested: System.out...)
      but there is ono redirect to: AnotherPage.xhtml

      whats wrong? maybe using extended EL with param need some special declaration in pages....?