我无法清除剑道工具提示。我的代码如下:
var tooltip = $("#DIV_ID").kendoTooltip();
tooltip.hide();
我也尝试过销毁事件,但工具提示没有被正确清除。
我无法清除剑道工具提示。我的代码如下:
var tooltip = $("#DIV_ID").kendoTooltip();
tooltip.hide();
我也尝试过销毁事件,但工具提示没有被正确清除。
In order to invoke the method hide
of kendoTooltip
you should do:
tooltip.data("kendoTooltip").hide();
What you do with tooltip.hide();
is hiding the HTML element associated to the tooltip.
In order to destroy the tooltip, you should do:
tooltip.data("kendoTooltip").destroy();
Check the following example: http://jsfiddle.net/OnaBai/f5g7C/
DIV
associated to the tooltipdestroy
the tooltip