Multiple tool-tip showing in kendo scheduler -


in kendo scheduler multiple tool tip showing in dayview , monthvie mouse hover. please find attachment.enter image description here

i tried hide other tooltip class except current one.

function enabletooltip(slctr, posi) {             $('.mytooltip').kendotooltip({                 autohide: true,                 position: 'top',                 show: function () {                     var = this,                     tooltips = $("[data-role=tooltip]");                     tooltips.each(function () {                         var tooltip = $(this).data("kendotooltip");                         if (tooltip && tooltip != that) {                             tooltip.hide();                         }                         settimeout(function () {                             tooltip.hide();                             console.log("timeout");                         }, 6000);                     });                  }              });         } 

can 1 please help.thanks in advance


Comments

Popular posts from this blog

html - How to set bootstrap input responsive width? -

javascript - Highchart x and y axes data from json -

javascript - Get js console.log as python variable in QWebView pyqt -