Hi, I currently have nintex mobile forms setup for audit purposes. In these there is the ability to capture photograhs. These forms are being sent into sharepoint for all central parties to see. When viewing the forms there is the ability to click onto the attacments for which open in the same window which means a lot of clicking back and forth and reloading of the browser. Is there a way I can set these attacments to open in a new window to avoid this pain? Thanks
Solved
How do you set attachements to open in a new window?
Best answer by andrew_x_childr
I'm using Nintex forms on premises, so this might not be applicable to the mobile version, but I've come up with a custom JavaScript solution that will make attachments open in a new tab:
NWF$("document").ready(function() {
NWF$('[id*="idAttachmentsTable"]').click(function() {
NWF$('tbody tr td a').attr("target", "_blank");
});
});
Translate
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.