动态更改kendoui中工具提示的内容

时间:2013-04-20 07:48:17

标签: jquery jquery-ui kendo-ui

我有拖放功能。当拖动element时,我想动态地 设置元素的位置并在tooltip中显示。我怎么能这样做 使用kendoui。

我定义如下:

<div id='drag'><p>Drag me</p></div>

我已经定义了工具提示,如:

$("#drag").kendoToolTip({
   position:"top",
   content: "Initial"
});

拖动

 $("#drag").draggable({
   drag: function(){
       $("#drag").data("kendoToolTip").content("Dragging");
    },
   stop: function(){
      $("#drag").data("kendoToolTip").content("Drag stopped");
    } 
 });

我想在divdragging继续显示工具提示。 我怎样才能做到这一点 任何帮助表示赞赏

1 个答案:

答案 0 :(得分:12)

试试这位朋友,

 $("#drag").data("kendoTooltip").options.content = "set content here...";

 $("#drag").data("kendoTooltip").refresh();