Skip to main content
Nintex Community Menu Bar

Hi there,
I'm on Nintex for Office 365. I have a form with a lookup field (Dropdown).
When a user select the field i would like to do a lookup on the lookup list and set a texbox field on the form.

Is this possible when using a Responsive Form?

 

Thanks in advance

Hi,

Yes what you are wanting to do is possible.
Setup your lookup control as usual and give it a name.
For your single lines of text control add a rule.

When : not(isNullOrEmpty(LookupControlName))
Then: Set value
Value: lookup("list title", "column to filter on",parseLookup(LookupControlName), "output column")

Thanks Simon.
Actually came up with similar solution.
Only in the When rule i used length(control)>0.

 

Also another note.. Would i be able to use javascript for this and can i reference javascript on the responsive forms?

 

Thanks in advance


Javascript cannot be used with responsive forms.
Thanks