Skip to content
On this page
json
{
// config.json // type "checkbox" example
//...
"label": "field Checkbox example",
"defaultValues": {
                    //...
                   "inputCheckbox": true,
                    //....
                },
"fields":
    [
    //...
        {
        //...
            {
               "type": "checkbox",
               "name": "inputCheckbox",
                //...

            }
        //...

        },
    //...
    ]
}
js
// script.js
// ....
const myCheckboxValue = command.inputCheckbox;
// ....