user5620472
user5620472

Reputation: 2882

Primefaces open page in new tab on button click

I have this

<h:outputLink value="http://.....index.html"
target="_blank">open</h:outputLink>

but it shows like link. How can I create this like button? I need button "open". When I press to this button I need open my link in new tab of browser.

Upvotes: 8

Views: 20607

Answers (1)

Subodh Joshi
Subodh Joshi

Reputation: 13492

Please mention your PF version we also used like below and it worked in older version Try it let us know

<p:button  value="Open" href="http://.....index.html" target="_blank" />

Upvotes: 16

Related Questions