Advertisement
Guest User

Untitled

a guest
May 26th, 2015
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. Ik wil graag naar een andere pagina gaan
  2.  
  3. XHTML (orderSubmitted.xhtml) :
  4.  
  5. <h:form>
  6. <h:commandLink id="modifyAfterError"
  7. action="#{orderInformation.redirectModify()}">
  8. #{messages.checkout_modifyOrder}
  9. </h:commandLink>
  10. </h:form>
  11.  
  12. Java :
  13.  
  14. public String redirectModify(){
  15. return "success";
  16. }
  17.  
  18. Pages.xml :
  19.  
  20. <page view-id="/secure/orderSubmitted.xhtml">
  21. <navigation from-action="#{orderInformation.redirectModify}">
  22. <rule if-outcome="success">
  23. <redirect view-id="/secure/shoppingBasket.xhtml"/>
  24. </rule>
  25. </navigation>
  26. </page>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement