Is there reference to the NWF$ scripting document library?


Badge +4

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.

2 replies

Badge +9

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

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

Badge +4

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