disable

disables the tooltip (tooltips won't appear anymore)

void disable();

Example

myView = webix.ui({
    view:"dataview",
    ...
    tooltip:{
        template:" Rating: #rating# <br> Votes: #votes#"
    }
});
 
 
$$('dataview1').config.tooltip.disable();

Related samples

    See also
    Back to top