Login using the username and password you created for AcrobatUsers.com.
Note: This is not the same as your Adobe ID.
Benefits of Free Membership:
Find out what AcrobatUsers.com is all about
You don't have to be a member to look at any content on the site. Increase your expertise with our helpful tutorials, videos, forums, and sample PDFs.
Like what you see? Take the next step and become a member. Register now to get discounts, attend eSeminars, ask questions and more.
Get the most out of your membership. Post in the forums, create your profile, submit to the gallery, attend a user group meeting. Log In now.
Hi,
Can someone please help me? I want to create a dropdown with text field disable when nothing is selected from the list.
Example: They have to select 1 in my dropdown list before they can be able to type in the next field. if nothing is selected the text field will be grayed out or disabled.
Thanks,
My Product Information:
LiveCycle Designer 8.2 / Windows
Offline
Maybe something like this:
if (this.selectedIndex == 2){
TextField1.presence = 'visible';
TextField1.mandatory = "error";
TextField1.mandatoryMessage = "This field is mandatory!";
}
else {
TextField1.presence = 'hidden';
TextField1.mandatory = 'disabled';
Offline
Hi,
Thank you for your response... I tried it and its not working
I wanna make dropdown list with the name of countries (e.i India, Canada, US, Italy) and If nothing is selected the text field beside it is grayed out. When you select one of the ff, the text will be enable.
Someone please help me :(
Offline
Are you sure that you are using JavaScript and not Formcalc?
I think the sample above will work
Offline
Hi,
Want to create a two drop down.. First drop down choices will be the Countries and when you select one of those countries another drop down will have choices with the city.
Example:
First Dropdown will be Second dropdown will show
Canada Toronto
Edmonton
Vancouver and etc...
Please help!
Thanks :)
Offline

Have you read Thom Parker's tutorial Programming List and Combo fields in Acrobat and LiveCycle forms - Part 1. Make sure you read and download the LiveCycle section and file.
Offline
Hi ALL
Thank you so much for all your help! It works now.
Thanks
Offline