Tree
A tree is a control that displays a tree of items.
It can be used to send commands or set datapoints.
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.
Data
Data Mode
Specifies the mode of the data.
The default
value is: items
.
Attribute Values
Value | Description |
---|---|
items | Default value. Data is set with the UI attribute Items. |
list | Data is a list of comma-separated values. Set in the List attribute. |
datasource | Data is set by a linked datasource. |
Items
Specifies the nodes of the tree.
The nodes are specified as a JSON array of objects.
For a list of node properties see the Tree Node object.
The item's value is used depending on the action specified for the tree. For example, if the action is "select", the value is sent as a command when the item is selected.
Attribute Values
Value | Description |
---|---|
<json> | Items specified as a json array. |
Datasource ID
Specifies the ID of the datasource.
The datasource keys are used as values, while a column specified in Label Data Name is used as label.
Label Data Name
Specifies the name of the column containing the label.
The default
value is: label
.
This attribute is static
. Its value can't be changed dynamically with a uiSet command or with a value binding.
Parent Data Name
Specifies the name of the data item that contains the parent id of the item.
The parent id is used to build the tree structure.
Attribute Values
Value | Description |
---|---|
<string> | The name of the data item. |
Action
Action
Specifies the action to be performed when an item is selected.
The action is associated with the item's value.
In datasource mode, the item's value is the key or the index, if the key is missing.
For actions that send a command, the command name is specified in the Name
attribute.
The default
value is: none
.
Attribute Values
Value | Description |
---|---|
none | Default value. No action. |
select | Selects the item. The comma-separated list of item values is sent as a command on a submit action or when it changes, if Auto Send it true. |
link | Opens the link specified as the item's value. |
command | Sends a command with the item's value. |
download | Downloads the file with path specified as the item's value. |
Selection Mode
Specifies the selection mode.
The default
value is: single
.
Attribute Values
Value | Description |
---|---|
single | Default value. Single selection. |
multi | Multiple selection. |
multi-key | Multiple selection with keys modifiers: Ctrl/Meta to toggle, Shift to select range. |
Recursive Selection
Specifies wether the selection is recursive.
If recursive, parent and children selection is linked.
The default
value is: false
.
This attribute is experimental
. It might not work properly and it might be modified or removed in a future release.
Attribute Values
Value | Description |
---|---|
false | Default value. Non recursive. |
true | Selecting/unselecting a parent selects/unselects all its children. Children selection affects the parent: if all children are selected, the parent is selected. If any children is unselected, the parent is unselected. |
Value
Specifies the value of the selected item.
Attribute Values
Value | Description | Example |
---|---|---|
<comma-separated list> | The values of the selected items. | value1,value2 |
Name
Specifies the command name that is sent to the server.
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> | A command name. | |
$[variable name] | A command name that sets a variable. | $myvar |
$[variable name]! | A command name that sets a persistent variable. | $myvar! |
Repeat
If enabled, the command will be repeated every second. Instead of a single command on the button press event, multiple commands are sent with the following suffixes:
<command name>/down
: on mouse down or touch down events<command name>/repeat
: if the button is still pressed, a repeat command is sent every second<command name>/up
: on mouse up or touch up events, for a short press (less than a second, so no repeat commands have been sent yet)<command name>/stop
: on mouse up or touch up events, for a long press (more than a second, so at least a repeat command has been sent)
The default
value is: false
.
Attribute Values
Value | Description |
---|---|
false | Default value. Repeat mode is disabled. |
true | Repeat mode is enabled. |
Target Camera
Specifies a target camera object, to display the camera live video stream.
If not specified, a default camera object is displayed in a popup.
Attribute Values
Value | Description | Example |
---|---|---|
[empty string] | The camera is displayed in a popup. | |
<Container ID> | The container object's ID. | mycontainer |
Auto Send
Specifies whether the value is automatically sent on change or is sent through a button with submit action.
The default
value is: false
.
Attribute Values
Value | Description |
---|---|
auto | 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 | Default value. The value is not automatically sent. |
Required
Specifies if the field is required when submitting multiple fields with a submit button. If true, an empty/null value is considered not valid. When there are non valid fields, the submit button focuses the first non valid field instead of sending data to the server, to prompt the user to fill in the required fields.
The default
value is: false
.
Attribute Values
Value | Description |
---|---|
false | Default value. The field is not required. |
true | The field is required. |
Filter
Filter
Displays an input field for filtering the items. After typing a value in the field or setting the Filter Value attribute, any item that does not match the input will be hidden. A match occurs when the filter value is found anywhere within any item's fields ('value', 'label', etc).
The default
value is: false
.
Attribute Values
Value | Description |
---|---|
true | Display the filter field. |
false | Default value. Hides the filter field. |
Filter Placeholder
Specifies a short hint that is displayed in the filter field before the user enters a value. Describes the expected value of an input field (e.g. a sample value or a short description of the expected format)
Attribute Values
Value | Description |
---|---|
<string> | A short hint. |
Filter Value
Specifies a string used as filter value. It's applied even if the filter field is hidden.
Attribute Values
Value | Description | Example |
---|---|---|
<string> | The filter string. | Jan 2015 |
Layout
Auto Scroll
Scrolls to the bottom of the list automatically, unless the user has scrolled up.
The default
value is: false
.
Attribute Values
Value | Description |
---|---|
false | Default value. False. |
true | True. |
Striped
Adds zebra-striping to rows.
The default
value is: false
.
Attribute Values
Value | Description |
---|---|
false | Default value. False. |
true | True. |
Highlight Selected
Specifies wether the selected items are highlighted.
The default
value is: true
.
Attribute Values
Value | Description |
---|---|
true | Default value. Highlight. |
false | No highlight. |
Panel
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
.