lunes, 4 de octubre de 2010

Redireccionando a otra página en del bean con js

               final String viewId = "http://www.google.com/";
               FacesContext facesContext = FacesContext.getCurrentInstance();
               ViewHandler viewHandler = facesContext.getApplication().getViewHandler();
               String actionUrl = viewHandler.getActionURL(facesContext, viewId);
               String javaScriptText = "window.open('"+actionUrl+"', '_blank');";
               JavascriptContext.addJavascriptCall(FacesContext.getCurrentInstance(), javaScriptText);

1 comentario: