Skip to main content
Nintex Community Menu Bar

Is there reference to the NWF$ scripting document library?

  • May 8, 2017
  • 2 replies
  • 14 views

Forum|alt.badge.img+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

Forum|alt.badge.img+9
  • May 8, 2017

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

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


Forum|alt.badge.img+4
  • Author
  • May 9, 2017

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?