Check documentation for the latest version of dhtmlxSuite clearTooltip DHTMLX Docs

clearTooltip

removes the tooltip set by the setTooltip() method

void clearTooltip(Date|string date);
dateDate|stringthe date you want to remove a tooltip from

Example

// set tooltip
myCalendar.setTooltip("2014-03-08", "International Women's Day");
 
// clear it later
myCalendar.clearTooltip("2014-03-08");

See also
Back to top