Good day all;
On a form I am designing I have 2 drop down menus labeled, directorate and division.
What I would like to do is when the user selects a directorate, the division drop down is only populated with a list of divisions that belong to the selected directorate.
I am sure I have seen this question asked before, but, I am at a loss to find it…..
Thanks All
Chomp
Solved! Go to Solution.
Views
Replies
Total Likes
Anybody else lost the ability to get at the advanced formatting (setting font family, etc.)? Can't seem to find where it's gone...
Views
Replies
Total Likes
Here is a sample that can give idea on how to do this..
https://acrobat.com/#d=CpmL3cuLdnNPeJ6Vc0IhdQ
Thanks
Srini
Views
Replies
Total Likes
Thanks Srini.
Before I saw your post I found the following. In your option which one would be better to use? I am looking at 5 directorates and each directorate having an max of 7 divisions
if(boxA.rawValue == "month")
{
}
if(boxA.rawValue == "year")
{
}
Views
Replies
Total Likes
I find it easier to do with a switch() statement and hand code it but if you have a lot of data doing some sort of loop through an array might be easier.
Below is just a small snip of quite a long list I have in one form. Using xfa.event.newText to get immediate response from the dropdown.
//on the Change event
var selection = this.boundItem(xfa.event.newText);
Desc.clearItems(); //Desc is the target dropdown
Desc.rawValue = "";
//above line needed to clear the displayed value in the next dropdown, clearItems() just clears the list.
switch (selection)
{
case "AE":
Desc.addItem("DF");
Desc.addItem("FR");
Desc.addItem("MS");
Desc.addItem("PC");
break;
case "AN":
Desc.addItem("BI");
Desc.addItem("FI");
Desc.addItem("GE");
Desc.addItem("OT");
Desc.addItem("ZO");
break;
}
Views
Replies
Total Likes
Anybody else lost the ability to get at the advanced formatting (setting font family, etc.)? Can't seem to find where it's gone...
Views
Replies
Total Likes
I have copied and pasted this exactly as it is here, I have named my target field DESC and I can't get it to work. I have pasted it into a change event on the first drop down box and then I tried it on the target drop down box. Can you please tell me what I am missing? I have read heaps of posts and they all say to do this differently, I am very confused.
Views
Replies
Total Likes
The code goes on the first drop down. You have to make sure the values match, in my code the "AE" and "AN" are possible selections in the dropdown, so make sure you are using matching your own dropdown selections. If you've assigned values to the dropdown selections then you would use those instead.
Views
Replies
Total Likes
Thanks Jono, I did eventually get that to work using your code from a different post. not sure what the difference was now because I have read so many different posts and I am now very confused.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies