I am using PrimeFaces with JSF2. I am trying to authenticate user by sending login and password as an Ajax request. And in the action method of the backing bean, I am trying to validate user and redirect to a new view if the validation succeeds. Is this possible while using primefaces? Because with primefaces' p:commandButton, I can only either have ajax behavior or the navigation.
|
feedback
|
|
Yes, just send a redirect instead of a (default) forward as outcome. The E.g.
| |||||
feedback
|
|
Here is another technique you might find useful. This is when you invoke method via AJAX from a Primefaces attribute that does not implement navigation. For example, I have a p:tree object with a method selected by the nodeSelectionListener. In that method, you can invoke redirection like this:
Hope you find this useful. | |||
|
feedback
|