I have muliple unit values of section_id, section_id1, and section_id2.
Your sample schedular 06_templates.html contains the following code:
scheduler.templates.event_text=function(start,end,event){
return “Text: “+event.text+” ”+“Descr.”+event.details;
}
My code is currently:
scheduler.templates.event_text=function(start,end,event){
return “
”+event.text+"
";
}
I would like to include the section_id, section_id1, and section_id2 values as part of template. What do I use to allow the printing of these sections id parameters in the data base as part of the scheduler.templates.event_text?