Hi,
I have a dropdown menu that populates another field depending on what is selected (as shown here where Admin Errors populates the next field with 6735-10-01).
However, there are 3 items in the dropdown list that I do not want to populate the other field with (basically it needs to stay blank when any of those 3 items are selected, unlike how it returns the zero in the example below). I'm just not sure what to put in for the bound values to make it blank.
Please advise.
Regards,
ZeroZone
Solved! Go to Solution.
Views
Replies
Total Likes
I'm not sure what your code looks like or where it is but you'll need to add a conditional statement like:
if (DropDown.rawValue=="0" || DropDown.rawValue=="1" /*|| etc, etc,*/)
TextField.rawValue=null;
else
TextField.rawValue=DropDown.rawValue;
Kyle
Views
Replies
Total Likes
I'm not sure what your code looks like or where it is but you'll need to add a conditional statement like:
if (DropDown.rawValue=="0" || DropDown.rawValue=="1" /*|| etc, etc,*/)
TextField.rawValue=null;
else
TextField.rawValue=DropDown.rawValue;
Kyle
Views
Replies
Total Likes
I think that did it. Thanks dcidev!
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies