slider(min,max,step)
A slider allows the user to select a value between two predefined numbers.
Syntax
A | B | C |
House length | slider(0,100) |
or
A | B | C |
House length | slider(0,100,5) |
This example creates a slider from 0 to 100 which jumps by 5 each time you move the knob.
Settings (Column G)
Used these to configure the behavior and appearance of fields, such as determining the number of decimal places in a numeric output or controlling when a field is displayed based on other input values (Read more).
symbol:value=before/after
Adds text before or after the slider's value.
Syntax
{symbol:m²=after}
showIf:logicid=value
Hides the field until the field with the logic id you define has the value you have entered.
Syntax
{showIf:insurance=Yes}
In this example, we only show the input field if the field with the logic id "insurance" has the value "Yes", e.g. for use on buttons with the options "Yes" and "No".
hideIf:logicid=value
Shows the field until the field with the logic id you define has the value you have entered.
Syntax
{showIf:insurance=No}
In this example, we only hide the input field if the field with the logic id "insurance" has the value "No", e.g. for use on buttons with the options "Yes" and "No".
Example
A | B | C | D | E | F | G |
House length | slider(0,100) | houseLength | {symbol: m²=after} |