Slider Element
The Slider element provides a range slider for selecting values between defined minimum and maximum bounds.
Overview
Slider is ideal for:
- Rating scales
- Price ranges
- Volume/intensity controls
- Satisfaction scores
- Any bounded numeric selection
Adding a Slider Element
- Open the Website Builder
- Find Slider in the Elements panel
- Drag it onto your page
- Configure the range in the General Tab
Properties
General Tab
| Property | Description |
|---|---|
| Question Text | Label displayed above the slider |
| Min Value | Lowest selectable value |
| Max Value | Highest selectable value |
| Step Value | Increment between values |
| Default Value | Initial slider position |
Validation Rules
- Min value must be less than max value minus step
- Step value cannot be zero or empty
- Default value must be within [min, max] range
Color Tab
| Property | Description |
|---|---|
| Panel Background | Container background |
| Track Color | Slider track color |
| Handle Color | Slider handle color |
Dimensions Tab
| Property | Description |
|---|---|
| Width | Slider width |
| Height | Track height |
| Handle Size | Slider handle dimensions |
Step Values
The step determines selectable increments:
| Min | Max | Step | Selectable Values |
|---|---|---|---|
| 0 | 10 | 1 | 0, 1, 2, 3... 10 |
| 0 | 100 | 10 | 0, 10, 20... 100 |
| 0 | 1 | 0.1 | 0, 0.1, 0.2... 1 |
Use Cases
Satisfaction Scale (1-10)
Label: "Rate your satisfaction"
Min: 1
Max: 10
Step: 1
Default: 5Price Range
Label: "Budget ($)"
Min: 0
Max: 1000
Step: 50
Default: 500Percentage
Label: "Completion (%)"
Min: 0
Max: 100
Step: 5
Default: 0Rating (0-5 stars)
Label: "Rating"
Min: 0
Max: 5
Step: 0.5
Default: 3Slider vs Other Numeric Inputs
| Element | Best For |
|---|---|
| Slider | Visual range selection |
| Numeric Input | Exact number entry |
| Rating | Star-based scoring |
| Increment/Decrement | Small adjustments |
Best Practices
Show current value - Display the selected value near the slider
Use logical ranges - Match real-world constraints
Choose appropriate steps - Too many or too few steps is confusing
Set sensible defaults - Start at a common or neutral value
Consider mobile - Ensure the handle is large enough to drag
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 Numeric Input - https://help.acenji.com/#/./create-web-application/elements/numeric-input/index Rating - https://help.acenji.com/#/./create-web-application/elements/rating/index