Skip to main content
Nintex Community Menu Bar
Question

How to make a field whose value is a reference to open in new tab or new window

  • July 10, 2024
  • 2 replies
  • 16 views

Forum|alt.badge.img+3

I have a field which is a reference to a record. And when this hyperlink is clicked, it should open a new tab/new window.

This topic has been closed for replies.

2 replies

Forum|alt.badge.img+3
  • Author
  • 17 replies
  • July 10, 2024

This is a lifesaver!

(function(skuid){

var $ = skuid.$;

$(function(){

$(‘head’).append(

$(‘’)

);

});

})(skuid);

credits to: Anna Wiersema


Forum|alt.badge.img+10
  • Nintex Employee
  • 890 replies
  • July 10, 2024

Hi Rowel. It might also be worth it to try creating a template field, or a template component that uses basic HTML and merge syntax to build a link with the correct fields. The target=“_blank” attribute of the URL element would open the link in a new tab.