Dropdown Element
The Dropdown element provides a select dropdown with support for single or multiple selections.
Overview
Dropdown is ideal for:
- Category selection
- Option filtering
- Form selections
- Any pick-from-list scenario
Adding a Dropdown Element
- Open the Website Builder
- Find Dropdown in the Elements panel
- Drag it onto your page
- Configure options in the General Tab
Properties
General Tab
| Property | Description |
|---|---|
| Question Text | Label displayed above the dropdown |
| Options | Array of selectable choices |
| Multiple | Allow multiple selections |
Options Configuration
Each option has:
- Label - Display text shown to users
- Value - Internal value stored when selected
Color Tab
| Property | Description |
|---|---|
| Panel Background | Container background |
| Input Background | Dropdown background |
| Input Border | Dropdown border |
| Text Color | Option text color |
Dimensions Tab
| Property | Description |
|---|---|
| Font Size | Text size |
| Padding | Inner spacing |
| Border Radius | Corner rounding |
Selection Modes
Single Select
Users choose one option from the list:
[Select an option ▼]Multiple Select
Users can select multiple options:
[✓ Option A, ✓ Option C ▼]Enable multiple selection in the General Tab.
Database Integration
Dropdown values can be saved to the card database:
- Open the Connect Tab
- Enable database connection
- Selected value(s) are stored
Use Cases
Category Selection
Label: "Category"
Options: Electronics, Clothing, Home, Sports
Multiple: falseCountry Selector
Label: "Country"
Options: USA, Canada, UK, Australia, ...
Multiple: falseSkills Selection
Label: "Skills (select all that apply)"
Options: JavaScript, Python, SQL, React, ...
Multiple: trueStatus Filter
Label: "Status"
Options: Active, Pending, Completed, Cancelled
Multiple: falseDropdown vs Selection Group
| Feature | Dropdown | Selection Group |
|---|---|---|
| Display | Compact (collapsed) | Expanded (all visible) |
| Space | Minimal | Takes more space |
| Options | Many options | Few options |
| Best for | Long lists | 3-7 choices |
Best Practices
Order logically - Alphabetical or by frequency
Include placeholder - "Select an option" as first item
Keep options scannable - Short, clear labels
Consider search - For very long lists, dropdowns work better
Use appropriate mode - Single for exclusive, multiple for additive
Questions?
If you have any questions, please don't hesitate to contact us. Alternatively, you can submit an issue on this platform.
Useful Links:
Web Elements - https://help.acenji.com/#/./create-web-application/elements/index Single Selection Group - https://help.acenji.com/#/./create-web-application/elements/single-selection-group/index Multiple Selection Group - https://help.acenji.com/#/./create-web-application/elements/multiple-selection-group/index