Year Template View

I’ve customized lightbox and for that i’ve updated week and month view template. However the custom information is not appearing in year view tooltip. How can I update Year View template information

Following is the week and month template view code.

[code] scheduler.templates.event_text=function(start,end,event){
return event.title+" | "+event.description;
}

	scheduler.templates.event_bar_text=function(start,end,event){
	 return event.title+" | "+event.description;
	}[/code]

Year tooltip is defined by year_tooltip template.

Here is the existent template:

scheduler.templates.year_tooltip = function(s,e,ev){ return ev.text };