Tooltip issue with event data

I’ve integrated tooltip to show when mousover to event in week and month view. Initially tooltip loads fine but once any event fires, tooltip stops working after that. Is there a way to keep tooltip alive all the time?

Following is the code

[code] scheduler.templates.event_text=function(start,end,event){
var html = get_tooltip_data(event);
return “”+event.name+" | “+ event.desc+”";
}

	scheduler.templates.event_bar_text=function(start,end,event){
		var html = get_tooltip_data(event);		
	 return "<span class='toolTip' title='"+html+"'>"+event.name+" | "+ event.desc+"</span>";
	}[/code]

//Tooltip function $(".toolTip").tipTip();

As result of most actions, scheduler will repaint events, so you need to call your tips creation code after each repainting. Probably next will work

scheduler.attachEvent("onViewChange", function(){ $(".toolTip").tipTip(); });

Yeah that’s what I’m doing. I thought there might be another way.

Scheduler produces “onMouseMove” event, when mouse moved over events, so custom tooltips showing can be triggered from it. But I’m not sure how it can be done in case of your tooltips library.

Infact it’s working perfectly with onMouseMove alone.