Solved

How to set field value (textbox) when you select a lookup dropdown field - Reponsive form

  • 18 March 2020
  • 4 replies
  • 280 views

Badge +3

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

icon

Best answer by SimonMuntz 19 March 2020, 06:04

View original

4 replies

Userlevel 6
Badge +22
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")
Badge +3

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

Userlevel 6
Badge +22
Javascript cannot be used with responsive forms.
Badge +3
Thanks

Reply