Navigace

Radyně

Do faces-config.xml:

<navigation-rule>
   <from-view-id>/tabular.xhtml</from-view-id>
   <navigation-case>
        <from-outcome>drilldown</from-outcome>
        <to-view-id>/edit.xhtml</to-view-id>
   </navigation-case>
</navigation-rule>


Seam umožňuje do tabular.page.xml:

<navigation>
   <rule if-outcome="drilldown">
      <redirect view-id="/edit.xhtml"/>
   </rule>
</navigation>

20/31