Dropdownlist properties |
The user can choose one item from a number of available choices in a dropdown list (Also known as pull down menu or combo box )
NameGive a name for the dropdownlist. The name is used internally to identify the dropdown list. You need to follow certain Naming Rules
Load from DatabaseThe dropdown list items will be saved in a database table. When the form is displayed, the items are loaded from the database table. This can be handy if the list needs to be updated frequently. You can update the list box directly from the Form Admin Page.
Cascaded ListCascaded lists are required when one list is loaded based on another list. For example, Country list and state list. When a country is selected in one drop down, the list of states in that country is loaded in another dropdown.
List ItemsIn the list items tab, you can enter the items for the list. (One item per line.)
For example:
See some more examples here: Filling the List items
Load Items from another ListWhen more than one lists in the same form shares the same list of items, this option becomes handy. For example, if you have two 'country' drop downs in your form, you can make the second list copy the items from the first 'country' list. This will greatly improve the form load time.
|