If I try to use tooltip properties described here:
http://docs.telerik.com/kendo-ui/api/javascript/ui/tooltip
In the Tooltip section of the Gantt configuration they get ignored?
For example the Height property is ignored?
gantt = $("#gantt").kendoGantt({
tooltip: {
visible: true,
height: 800,
template: kendo.template($("#task-template-gantt-tooltip").html())
//template: "#= task.title #"
},
I really want to be able to display a clickable link in the tool tip. However when the mouse goes to click the link the tooltip goes away.
From the tooltip docs I think doing this would solve my problem:
autoHide: false,
showAfter: 3,
showOn: "mouseenter"
How on the gantt when a user hovers over the task can i display a tooltip that stays when they mouseover the tooltip?