Skip to main content
Nintex Community Menu Bar

Link On a Form - Open New Window

  • December 9, 2016
  • 4 replies
  • 42 views

Forum|alt.badge.img+3

So I have a form and I added a Label and used "Insert Link" to add a hyperlink.  Instead of typing out an HTTP link, I am using a variable and then calling it "Template Example".  Where can I add "Target=_blank" to open this link in a new window?

I click on Format Text and Edit Source for the Label so you can see the source.  I just don't know where to add the Target=_blank expression when a variable is used.

196826_pastedImage_1.png

4 replies

Forum|alt.badge.img+14
  • Scholar
  • December 9, 2016

it's <a> tag attribute.

you can place anywhere within open tag


Forum|alt.badge.img+3

Just an update...I deleted all that source and just used my own HTML to do this:

<a href="{yourworkflowvariable}" target="_blank">Template Example</a>


Forum|alt.badge.img+5

Hi ‌, I think it would be good if you can mark your own reply as the answer to your question as this can be beneficial for other Nintex Connect users. happy.png


Forum|alt.badge.img+3

Thanks @steven_parker this worked for me! Struggled with trying to do this via other controls (for some reason I didn't think of label).