Tooltip stopped working all the sudden

Tooltip stopped working all the sudden.

Have been going back through version control and trying to set things back but with no avail.

tooltip_text function gets triggered ok (put a console.log in there to confirm)

Just that nothing shows up on the screen.

Any tips appreciated.

Thanks,

David

var format=scheduler.date.date_to_str("%m/%d/%Y - %H:%i %A");
scheduler.templates.tooltip_text = function(start,end,event) {
console.log(‘this is showing up in the debugger’);
return 'Event: ’ + event.text
+ "
Start date: "+ format(start)
+ "
End date: "+format(end)
+ "
Source: " + event.import_source_name
+ "
Details: " + event.details;
};

Hello,
the tooltip might not be shown if tooltip_text function returns an empty string. However, this not seems to be an issue in your case.
Check the DOM tree in the elements inspector, the tooltip node is created as a direct child of element
screencast.com/t/ofaQ925Duw
Can you find it with the inspector?
If so, check the css settings of the node. Maybe something overrides ‘display’ or ‘position’ properties of the tooltip box

Please see the answer here
viewtopic.php?f=6&t=34050&p=108489#p108489

Thanks, checking it out now

-D