Documentation

label

the text label of the control

string label;

Example

webix.ui({
    container:"box",
    view:"form",
    elements:[
        { view:"text", label:"Email"},
        { view:"text", label:"Password"},
        { cols:[
                { view:"button", label:"Login" , type:"form" },
                { view:"button", label:"Cancel" }
        ]}
    ]
});

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