Samuel Ledresseur
My feedback
-
29 votes0 comments · 1 - Nintex Workflow for SharePoint » Workflow Actions · Flag idea as inappropriate… · Admin →
Samuel Ledresseur supported this idea ·
-
35 votes6 comments · 2 - Nintex Forms for SharePoint » Form controls · Flag idea as inappropriate… · Admin →
Thanks for your suggestion. In Universal Forms, the Label control (which includes Rich Text) allows you to insert a link. All links will now open in a new browser tab.
If there is something else you would like to see, please let me know in the comments section below.
Cheers,
EuanAn error occurred while saving the comment
Hi all, I fully agree. I found this work around :
1° use label control to display link (via Insert link)
2° set a custom css class (ex: lblLink)
3° In form setting, add following custom javascript :
NWF.FormFiller.Events.RegisterAfterReady(function () {
NWF$(".lblLink a").attr("target","_blank");
});
remember: .lblLink is the custom css class name you set to the label control.