Tooltips in Joomla

I have just installed Scheduler for Joomla on my site. The calendar is working great but I am having an issue with the tooltips. All of the event tooltips are displaying +event.text+ instead of the data. I assume something needs to be turned on or set but I can’t find any info on the admin panel nor have I been able to search the forum for this issue. What has to be set so the actual data shows up in the tooltip?

-Rob

BTW, I am using Joomla 1.5.26 and scheduler 3.0.

-Rob

Hi,
please, open scheduler admin panel, “Templates” tab.
You have to modify scheduler.templates.event_bar_text=function(start,end,event){:

return "<span title="+event.text+">" + event.text + "</span>";

I just inserted that code and now the tooltip is returning just the first word of the item description. Can the tooltip be set to display a longer text clip from the calendar item?

-Rob

Now that I knew what I was looking for I found a page in the documents that helped. Your reply was missing a set of single quotes.

return “”+text+"";

Thanks for you help and getting me on the right track.

-Rob