-
-
Notifications
You must be signed in to change notification settings - Fork 17
Configuration Item Checkbox Section
Sébastien Gallou edited this page Apr 14, 2023
·
1 revision
This type allows user to create an optional section. Section should be displayed by GUI with an enable/disable mark (like checkbox).
This field define the type as a checkbox section
"type" : "checkboxSection"
The content section contains an item or a sub-section.
"authentication": {
"type": "checkboxSection",
"content": {
"Password": {
"type": "string",
"encrypted": true,
"required": true
}
}
}
The enable/disable state can be provided by the defautValue
tag (default to false if not provided).
"defautValue" : true
"authentication": {
"type": "checkboxSection",
"defaultValue": true,
"content": {
"Password": {
"type": "string",
"encrypted": true,
"required": true
}
}
}
Yadoms -- The ultimate house automation solution