Hi Jonathan,
You need a Nintex Form for your Doc Library
For your DocFolder field Control Settings, under Formatting, for CSS class, append cssfldDocFolder.
It should appear like this: nf-form-input cssfldDocFolder
Then can create a Rich Text Control in the Form.
In this control, under Formatting, in CSS class, fill in MyRichTextControlClass
In Form Setting, under Custom Javascript
NWF$(document).ready(function () {
var strDocFolder=NWF$('.cssfldDocFolder').text();
NWF$('.MyRichTextControlClass').html('<a target='_blank' href=''+strDocFolder+''>'+strDocFolder+'</a>');
});
Please note that this will work in View mode only, this is why we get the value of DocFolder using CSS instead of Javascript value: .val()
Regards,
Christophe