Say, can you change what the event text shows in Timeline view? I use this in the standalone version;
[code] scheduler.templates.event_bar_text=function(start, end, event){
if(event.work_desc)
return “”+scheduler.getLabel(“work_desc”, event.work_desc)+""+
“
”+(event.text_desc?(“Notes: “+event.text_desc):””);
return "New Event";
}[/code]
Where would I change this in the Joomla plugin?