My JSF Books/Videos My JSF Tutorials OmniFaces/JSF PPTs
JSF 2.3 Tutorial
JSF Caching Tutorial
JSF Navigation Tutorial
JSF Scopes Tutorial
JSF Page Author Beginner's Guide
OmniFaces 2.3 Tutorial Examples
OmniFaces 2.2 Tutorial Examples
JSF Events Tutorial
OmniFaces Callbacks Usages
JSF State Tutorial
JSF and Design Patterns
JSF 2.3 New Features (2.3-m04)
Introduction to OmniFaces
25+ Reasons to use OmniFaces in JSF
OmniFaces Validators
OmniFaces Converters
JSF Design Patterns
Mastering OmniFaces
Reusable and less-verbose JSF code

My JSF Resources ...

Java EE Guardian
Member of JCG Program
Member MVB DZone
Blog curated on ZEEF
OmniFaces is an utility library for JSF, including PrimeFaces, RichFaces, ICEfaces ...

.

.

.

.

.

.

.

.


[OmniFaces Utilities] - Find the right JSF OmniFaces 2 utilities methods/functions

Search on blog

Petition by Java EE Guardians

Twitter

vineri, 15 ianuarie 2016

Open the targeted view in a new browser tab

Here it is a set of examples for opening the targeted view in a new browser tab:

·         for <h:link/>, <h:commandLink/> and <h:outputLink/> use the target="_blank":

<h:link value="Click me (h:link)!" outcome="result" target="_blank"/>

<h:outputLink value="http://showcase.omnifaces.org/whatsnew" target="_blank">Click me (h:outputLink)!</h:outputLink>

<h:form>
 <h:commandLink value="Click me (h:commandLink)!" action="result" target="_blank"/>
 <h:commandLink value="Click me (h:commandLink with redirect)!" action="result?faces-redirect=true" target="_blank"/>
 <h:commandLink value="Click me (h:commandLink with action method)!" action="#{resultBean.navigate()}" target="_blank"/>
 <h:commandLink value="Click me (h:commandLink with action method and redirect)!" 
                action="#{resultBean.navigateWithRedirect()}" target="_blank"/>
</h:form>

·         for <h:button/> use the window.open():

<h:button value="Click me (h:button)!" onclick="window.open('faces/result.xhtml');"/>

·         for <h:commandButton/> use the pass-through attribute, formtarget:

Add namespace: xmlns:pt="http://xmlns.jcp.org/jsf/passthrough"

<h:form>
 <h:commandButton value="Click me (h:commandButton)!" action="result" pt:formtarget="_blank"/>
 <h:commandButton value="Click me (h:commandButton with redirect)!" action="result?faces-redirect=true" pt:formtarget="_blank"/>
 <h:commandButton value="Click me (h:commandButton with action method)!" action="#{resultBean.navigate()}" pt:formtarget="_blank"/>
 <h:commandButton value="Click me (h:commandButton with 
                  action method and redirect)!" action="#{resultBean.navigateWithRedirect()}" pt:formtarget="_blank"/>
</h:form>

Check the complete application here.

Niciun comentariu :

Trimiteți un comentariu

JSF BOOKS COLLECTION

Postări populare

Visitors Starting 4 September 2015

Locations of Site Visitors