Is there reference to the NWF$ scripting document library?
For example I need to retrive the value on the calc or SQL content on the Nintex form.
I tried to us below script:
alert(NWF$('#clientidjsvariablename').val());
Is there reference to the NWF$ scripting document library?
For example I need to retrive the value on the calc or SQL content on the Nintex form.
I tried to us below script:
alert(NWF$('#clientidjsvariablename').val());
NWF$ is jQuery - reference is jQuery documentation. You have to correct the selector in example:
alert(NWF$('#' + clientidjsvariablename).val());
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.