Hii
One more issue regarding the hour scale. As you have answered i have changed the hour scale like your code shown below
.dhx_scale_hour{
line-height:normal;
}
var step = 15;
var format = scheduler.date.date_to_str("%H:%i");
scheduler.config.hour_size_px=(60/step)*21;
scheduler.templates.hour_scale = function(date){
html="";
for (var i=0; i<60/step; i++){
html+="<div
style=‘height:21px;line-height:21px;’>"+format(date)+"";
date = scheduler.date.add(date,step,“minute”);
}
return html;
}
the hour sclae changed asper my requirement but when i take the light box its size is increased and the time divisions on the hour scale are vertically displayed on the lightbox and one more thing the start time and end time changed to non-formatted values
please tell me the reason
Thank You
Vineetha
Hi
the customization of hour scale template will be supported in the next scheduler version. This version will be released in few days.