label

the text label of the rich text editor

string label;

Example

webix.ui({
    view:"form",
    elements:[
        { view:"text", label:"Email"},
        { view: "richtext", label:"Mytext"}
        { cols:[
            { view:"button", label:"Login" , css:"webix_primary" },
            { view:"button", label:"Cancel" }
        ]}
    ]
});

Related samples

Details

The property should not be mixed with the label control.

See also
Back to top