在JSF中我想從下拉菜單中重定向頁面。它重定向當我使用faces-config
使用navigation-rule
:rich:menuItem操作在沒有導航規則的情況下不重定向
<navigation-rule>
<from-view-id>*</from-view-id>
<navigation-case>
<from-outcome>test</from-outcome>
<to-view-id>/pages/design/TestDetails.xhtml</to-view-id>
<redirect/>
</navigation-case>
</navigation-rule>
但是,當我試圖直接通過URL,我不能重定向:
<rich:menuItem label="someLabel" action="/pages/design/TestDetails.xhtml" />
什麼是我的代碼錯?
你試過這個:' '? –
Omar
謝謝奧馬爾我會嘗試 –
我能夠使用導航重定向,但我希望它使用動作URL重定向 –