tooltip

задает тултип для toggle

boolean|string|function|object tooltip;

Example

// заданный функцией
webix.ui({
    view:"toggle", onLabel:"Edit", offLabel:"Read",
    tooltip:function(obj){
        return (obj.value ? obj.onLabel : obj.offLabel) + " a record";
    }
});
 
// заданный объектом
webix.ui({
    view:"toggle", onLabel:"Edit", offLabel:"Read",
    tooltip:{
        template:"#label#", dx:10, dy:20
    }
});

Related samples

Details

If you define the tooltip as a function, it receives one parameter - the configuration object of the button.

Задавая tooltip как объект, вы можете настроить не только вид и содержимое тултипа, но и его положение на экране относительно указателя мыши. Свойство template может быть или строкой, или функцией like in the previous two examples:

// заданный объектом
webix.ui({
    view:"toggle", value:"Edit",
    tooltip:{
        template:function(obj){
            return (obj.value ? obj.onLabel : obj.offLabel) + " a record";
        },
        dx:10, dy:20
    }
});
See also
Наверх