Documentation
RowLayout
Require: IP-Symcon >= 5.0
Creates a row in which form fields are displayed side by side.

Parameter
| Parameter | Description |
|---|---|
| items | List with configuration elements within the row (can be changed since IP-Symcon 6.0) |
| name (optional) | Name of the row |
| type | RowLayout |
| visible (optional) | (default: true) If true, the row is visible, otherwise it is invisible (since IP-Symcon 5.2) |
Example
// row layout
{
"type": "RowLayout",
"items": [
{
"type": "SelectLocation",
"name": "Location",
"caption": "My Location"
},{
"type": "Button",
"caption": "Test",
"onClick": "TM_Update($id);"
},{
"type": "Button",
"caption": "Test2",
"onClick": "TM_Update2($id);"
}
]
}