Expand my Community achievements bar.

Populating drop-down menu options

Avatar

Former Community Member
Is there a way to load the options for a drop-down menu (combo box, as they call them) dynamically, with an FDF or other means, or are those values strictly "hard-coded" into the form when you design them?



Thanks!
1 Reply

Avatar

Former Community Member
You can add options dynamically to a drop-down with javascript,

using the method addItem of the drop down control:



myDropDown.addItem("text of the option","key of the option");