Redirect

Home
View
Created by david on 2009-06-02 08:42:55.0

Client side redirects are quite simple: From any view controller, just call the "redirect(...)" method. Instead of the current view, the framework will deliver a special redirect view to the client which contains the redirect meta information. There are 3 ways to redirect to another view: Using an URL, using a view controller, or using a view alias.

redirect("foo.xhtml");
redirect(new FooViewController());
redirect(fooViewAlias);

Related Documentation


View Controllers
Client-Side Redirects
View Aliases