Skip to main content

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());

but it returns undefined.

NWF$ is jQuery - reference is jQuery documentation. You have to correct the selector in example:

alert(NWF$('#' + clientidjsvariablename).val());


thanks    for your answer, I looked into JQuery overview, 

it seems have a lot of staff,

 

which specific area/ type or DOM of it, is related to Nintex so we should focus on for sake of Nintex form/ workflows?


Reply