Step slider

The availability of features depends on the license and may not be available in all deployments.

Step slider component.

Component properties

Eximee Designer properties
Attribute name in Source
Description

Initial value of the slider (section Basic properties)

startValue

Initial value of the slider (default empty). Feature availability depends on the license and may not be available in all deployments.

Step by which the slider value can be set (section Basic properties)

step

Step by which the slider value can be set (default value 100).

Minimum displayed value of the slider (section Basic properties)

minValue

Minimum value of the slider (default value 0).

Maximum displayed value of the slider (section Basic properties)

maxValue

Maximum value of the slider (default value 1000).

Graphical representation of the field (section Styling)

presentation

Graphical representation of the component (choose from values STANDARD - default and TILES). The value STANDARD defines the standard appearance of the component, TILES is a presentation of the component as tiles with the value placed inside. Feature availability depends on the license and may not be available in all deployments.

Predicted slider value on hover over the axis (section Styling)

showPredictionTooltip

Show predicted slider value when hovering over the slider axis (checked by default). Feature availability depends on the license and may not be available in all deployments.

Presentation in the tooltip of the value indicated by the slider (section Styling)

showTooltip

Show the value indicated by the slider (checked by default). Feature availability depends on the license and may not be available in all deployments.

Suffix of the text field (section Other)

textInputSuffix

Value “appended” at the end of the slider text field. Feature availability depends on the license and may not be available in all deployments.

Message for exceeding the maximum value (section Other)

minValueSuggest

Text displayed under the Step slider text field when the minimum value is exceeded. Feature availability depends on the license and may not be available in all deployments.

Message for exceeding the minimum value (section Other)

maxValueSuggest

Text displayed under the Step slider text field when the maximum value is exceeded. Feature availability depends on the license and may not be available in all deployments.

More information about component properties: Common component properties

Illustration 1. Example appearance of the component on the form

Supplying the component with a service

The step slider component can be fed by the ServiceProxy service in one of two ways:

1

Feeding with a list of values

The supplying service should return data in the form of two lists in valuesDomain and visibleValuesDomain:

  • valuesDomain - a list containing the sorted domain of the component, specifying all numbers the slider can take as values, e.g.: [1, 2, 3, 4, 5]

  • visibleValuesDomain - a list containing binary flags indicating which values should have a visible label, e.g.: [true, false, true, false, true]

On a step slider fed this way, labels will be presented for the values: 1, 3 and 5.

2

Feeding with min and max values

The supplying service should return data in the fields minValue and maxValue:

  • minValue - the minimum value of the component, e.g.: minValue=100

  • maxValue - the maximum value of the component, e.g.: maxValue=200

Optionally you can also supply value - the initial value of the component.

Feeding the step slider component with min and max values does not allow hiding value labels (all labels will be visible).

Demo application: demoStepSlider

Last updated

Was this helpful?