enables the tooltip (after it has beed disabled)
myView = webix.ui({
view:"dataview",
...
tooltip:{
template:" Rating: #rating# <br> Votes: #votes#"
}
});
$$('dataview1').config.tooltip.enable();
Back to top