Stepper
A stepper is a field that the user can click to increase or decrease a numerical value.
It can also display values from a list.
Keyboard input is supported.
Attributes
Common
ID
Sets the object's ID.
The ID identifies the object and is used to reference it in UISet actions, allowing to change its attributes dynamically.
The ID is not unique, it can be shared among multiple objects to quickly change a common attribute.
IDs can't be changed with a UISet action, but they can have a Value Binding assigned to them. Value Bindings on IDs allow an object to be dinamically attached to a set of attribute values.
E.g. the following Value Binding switches the ID of the object between mybutton1
and mybutton2
based on the value of the UISet button.address
:
Value binding:
="mybutton" + ui('button', 'address')
UISet:
UISet('button', 'address', '1')
switches the ID to mybutton1
UISet('button', 'address', '2')
switches the ID to mybutton2
Position and Size
Position
Sets the object's position.
The default
value is: x0y0
.
Attribute Values
Value | Description | Example |
---|---|---|
x<left>y<top> | Specify left/top coordinates in pixels. | x10y20 |
Flex Grow
Specifies if the objects should grow to fill the available space.
The default
value is: true
.
Attribute Values
Value | Description |
---|---|
true | Default value. Objects expand to fill the available space. |
false | Objects do not grow to fill the available space. |
Flex Shrink
Specifies if the objects should shrink to fit the available space.
The default
value is: true
.
Attribute Values
Value | Description |
---|---|
true | Default value. Objects shrink to fit the available space. |
false | Objects do not shrink to fit the available space. |
Width
Sets the object's width in pixels.
Minimum value is 1.
Height
Sets the object's height in pixels.
Minimum value is 1.
Field
Name
Specifies the name of the field, used to send a command to the server, along with the field's value as a parameter.
If the name starts with $, then the server will automatically set a variable with the same name as the command, containing the command's parameter.
The default
value is: =id
.
Attribute Values
Value | Description | Example |
---|---|---|
<string> | Command name. | |
$[variable name] | A command name that sets a variable. | $myvar |
$[variable name]! | A command name that sets a persistent variable. | $myvar! |
Auto Send
Specifies whether the value is automatically sent on change or is sent through a button with submit action.
The default
value is: auto
.
Attribute Values
Value | Description |
---|---|
auto | Default value. The value is sent only if there's no buttons with submit action in the same or a parent container. |
true | The value is sent automatically on change. |
false | The value is not automatically sent. |
Change Delay
Sets the delay in milliseconds by which changes are detected. If the field is working in autosend mode, this value determines the delay between the last button press and the value being sent to the server.
The default
value is: 250
.
Value
Value Type
Specifies the type of the value.
The default
value is: numeric
.
Attribute Values
Value | Description |
---|---|
numeric | Default value. Numeric value. |
list | List of values. |
Value
Specifies the value of the stepper.
The default
value is: 0
.
Attribute Values
Value | Description |
---|---|
<string> | Value. |
Step
Specifies the step of the stepper.
The default
value is: 1
.
Attribute Values
Value | Description |
---|---|
<int> | Step. |
Min
Specifies the minimum value of the stepper.
Attribute Values
Value | Description |
---|---|
<string> | Min. |
Max
Specifies the maximum value of the stepper.
Attribute Values
Value | Description |
---|---|
<string> | Max. |
Value
Specifies the value of the stepper.
Attribute Values
Value | Description |
---|---|
<string> | Value. |
Values
Specifies the list of values of the stepper.
Attribute Values
Value | Description | Example |
---|---|---|
<comma-separated list> | Items specified as a comma-separated list. | item1,item2,item3 |
Cycle
Specifies wether the stepper cycles through the values or stops at the limits.
The default
value is: false
.
Attribute Values
Value | Description |
---|---|
false | Default value. Doesn't cycle. |
true | Cycles. |
Digits
Specifies a fixed number of digits to display.
The default
value is: 0
.
Attribute Values
Value | Description |
---|---|
<int> | Digits. |
Layout
Orientation
Specifies the orientation of the stepper.
The default
value is: horizontal
.
Attribute Values
Value | Description |
---|---|
horizontal | Default value. Horizontal. |
vertical | Vertical. |
Button Icons
Specifies the icons of the stepper.
The default
value is: arrows
.
Attribute Values
Value | Description |
---|---|
arrows | Default value. Arrows. |
plus-minus | Plus and minus. |
custom | Custom icons. |
Decrease Icon
Specifies the decrease icon of the stepper.
Attribute Values
Value | Description |
---|---|
<icon> | Icon. |
Increase Icon
Specifies the increase icon of the stepper.
Attribute Values
Value | Description |
---|---|
<icon> | Icon. |
Panel
Label
Specifies a label for the stepper.
Attribute Values
Value | Description |
---|---|
<string> | Label. |
Panel
Shows a panel that frames the object. Its style can be modified.
The default
value is: true
.
Attribute Values
Value | Description |
---|---|
true | Default value. Shows the panel. |
false | Hides the panel. |
Panel Color
Specifies the panel color.
The default
value is: default
.
Attribute Values
Value | Description |
---|---|
default | Default value. Default color. |
primary | Primary color, used to highlight important areas. |
warning | Warning color, used to highlight warning areas. |
success | Success color, used to highlight success areas. |
error | Error color, used to highlight error areas. |
red,blue,yellow,green,yellow,purple,orange,green | Palette colors. |
custom | Custom color, defined in the "Custom Color" attribute. |
Panel Custom Color
Specifies the panel custom color.
Attribute Values
Value | Description | Example |
---|---|---|
<html color> | Color in any html accepted format. | #ff0000 |
Typography
Font Family
Specifies the font family.
The default
value is: default
.
Font Size
Specifies the font size in pixels or percentage (relative to the project's font size).
The default
value is: 14
.
Attribute Values
Value | Description | Example |
---|---|---|
<integer> | Font size in pixels. | |
<percentage>% | Relative font size in percentage. | 90% |
Font Color
Specifies the text CSS color.
Attribute Values
Value | Description | Example |
---|---|---|
<html color> | Color in any html accepted format. | #ff0000 |
Font Weight
Specifies the weight of the font.
The default
value is: normal
.
Attribute Values
Value | Description |
---|---|
normal | Default value. Normal. |
bold | Bold. |
bolder | Bolder. |
lighter | Lighter. |
Italic
Show the text in italics.
The default
value is: false
.
Attribute Values
Value | Description |
---|---|
false | Default value. Normal. |
true | Italics. |
Small Caps
Sets the font to small caps.
The default
value is: false
.
Attribute Values
Value | Description |
---|---|
false | Default value. Normal. |
true | Small caps. |
Decoration
Specifies the text decoration.
The default
value is: none
.