Video Screencast Help
Search Video Help Close Back
to help
New in the Rewards Catalog: Vouchers for "Symantec Technical Specialist" and "Symantec Certified Specialist" exams.

how to display information after selection in drop down

Updated: 22 May 2010 | 3 comments
rjbonilla's picture
0 0 Votes
Login to vote

Hello All

I have a DropDownListCompent where I have different ship to locations (Example: ATL, MIA) what I would like to have is when the user says selects ATL from the drop down it will display the address of that location in another text field on the form.

Thanks

Comments

rhamner's picture
24
Apr
2009
1 Vote +1
Login to vote

how to display information after selection in drop down

If your drop down list is based off a complex type, meaning the data type is something other than text and you have to select a property for the display field then this is easy. Your drop down list has a property called Post Form on Value Change. Make sure it's checked. Add a merge label to your form and in the variable picker you will see a special item called ThisFormData. Drill into this and you should see your variable name for the selected item of your drop down. You can choose whatever properties you wish to display. That should do it. If you want to make the user experience better put the drop down and merge label in a component called DynamicUpdatePanelComponent and that portion of the page will be refreshed via AJAX without the whole page refreshing.

XIANRAIN's picture
03
May
2009
0 Votes 0
Login to vote

You Can try creating a sub

You Can try creating a sub category for the it . and what rhammer mentioned is correct. but it would be more precise if you can provide the detailed outcome that you would like to achieve.

rjbonilla's picture
08
May
2009
0 Votes 0
Login to vote

Thanks

Thanks rhamner, that got me going down the right path and now everything is working perfectly