scheduler style

HI,

i can’t understand how can i change some style in scheduler, for example in month view i want to write more data and i use this



scheduler.templates.event_bar_date=function(start,end,event){

var tipo = event.tipo;



return "Da: “+scheduler.templates.hour_scale(start)+” A: “+scheduler.templates.hour_scale(end)+” Tipo “+tipo+” ";



}



in normal type of month view i can’t see the two 2 lines that i create so i look for the problem in css and i found this line



dhx_cal_event_clear{font-family:Tahoma;font-size:8pt;height:13px;padding-left:2px;color:#887A2E;white-space:nowrap;overflow:hidden;cursor:pointer;}



this works but if i have 2 events there is an overflow but i don’t find how i can enlarge the distance between events.



Tank you.

Not possible with current version, but you can use update one ( is attached )
With it you can add next code before init of scheduler


.dhx_cal_event_line {
height:43px;
}




codebase_7_9.zip (44.8 KB)


Great!!!



Thankyou very much!