disables the tooltip (tooltips won't appear anymore)
myView = webix.ui({
view:"dataview",
...
tooltip:{
template:" Rating: #rating# <br> Votes: #votes#"
}
});
$$('dataview1').config.tooltip.disable();
Back to top