The tooltip extension does not fire the tooltip_text function if a user moves from one task to another without the initial tooltip hiding.
This can be duplicated by linking to the dhtmlxgantt_tooltip.js extension file:
<script type="text/javascript" src="dhtmlxGantt31/codebase/sources/ext/dhtmlxgantt_tooltip.js"></script>
and then using the following code:
gantt.templates.tooltip_text = function(start,end,task){
return "<b>Task:</b> "+task.text+"<br/><b>Start date:</b> " +
gantt.templates.tooltip_date_format(start)+
"<br/><b>End date:</b> "+gantt.templates.tooltip_date_format(end);
};
and finally move your mouse from one task to another without the tooltip going away…it doesn’t re-run the function and thus the tooltip is not accurate for the task that is being hovered over.
Can this be resolved?