Documentation

label

the text label of the control

string label;

Example

webix.ui({
    container:"box",
    cols:[
        { view:"form", elements:[
            { view:"checkbox", id:"ch1", label:"Block pop-up windows"},
            { view:"checkbox", id:"ch2", label:"Load images automatically"},
            { view:"checkbox", id:"ch3", label:"Enable JavaScript"} 
        ]}
    ]
});

See also

Details

The property should not be mixed with the label control.

Morevoer, label control can as well have a label, but there's not much sence in it.

Back to top