Hello,
I am using the kendo tool tip widget inside a kendo observable object. For whatever reason, setting the position and opacity seems to work as expected. However, adding an animation or delay does not seem to work. Below is a snippet of my code:
ViewModel = new kendo.data.ObservableObject({ reloadTooltips: function () { var reloadTooltip = function(tooltipSelector, templateSelector) { $(tooltipSelector).kendoTooltip({ content: kendo.template($(templateSelector).html()), position: "top", width: "300px" }); } var reloadAuthTooltip = function (tooltipSelector, templateSelector) { $(tooltipSelector).kendoTooltip({ content: kendo.template($(templateSelector).html()), position: "top", width: "350px", }); } reloadTooltip(".authorized", "#authorizedTemplate"); reloadAuthTooltip(".nonauthorized", "#nonAuthorizedTemplate"); reloadTooltip(".nonauthorizedquestion", "#nonAuthorizedQuestion"); },