Skip to main content
Nintex Community Menu Bar

get the list lookup value to textbox using java script

  • September 19, 2019
  • 1 reply
  • 14 views

Forum|alt.badge.img+4

I have requested to develope a nintex form should get data from the mega list for "mega projects"

and based on each project I should be able to select the "project method" based on the project title first list lookup, anthor thing, based on the listed 5 methods I should select the sub phases from thired lookup list which is has 5 categories 5 choice for each

so What I need

I want to write each select value from list lookup to a texbox

to be able to set filteration for each lookup list

 

 

 

4596i4F63B5F8B8DBED9B.jpg4597i212383B4F97AA62C.jpg

 

 

 

1 reply

Forum|alt.badge.img+10
  • October 17, 2019
You set value to a text by below code.
get the value from the dropdown to a variable
var stageVal = "Value from drop down"

NWF$('#'+ jvartxt).val (stageVal);
NWF.FormFiller.Functions.ProcessOnChange(NWF$("#" +jvartxt));