label

sets the text of the label

string label;

Example

webix.ui({
    view:"combo",
    label: 'Fruit',
    data:[ //you can use the "options" property instead
        { id:1, value:"Banana"   }, 
        { id:2, value:"Papai"   }, 
        { id:3, value:"Apple" }
    ]
})

Related samples

Details

The property should not be mixed with the label control.

See also
Back to top