Schedular without time bar?

Hi,

Is it possible to have a DhtmlX Schedular without the time showing in daily and weekly views? Our situation is that our customer would like to show their work items on schedular kind of look & feel. Their work items are specific to a date NOT time though. So we are wondering can we configure the DHtmlX Schedular in such a way that it doesn’t show time. Any suggestion will be sincerely appreciated. Thanks a lot in advance!

Yingle

You can easily replace time from the view, this can be configured through templates

docs.dhtmlx.com/doku.php?id=dhtm … s#day_view

scheduler.templates.event_header = function(s,e, obj){ return “”; };
scheduler.templates.event_bar_date = function(s,e, obj){ return “”; };

Thanks for your reply! But it seems that what I want also involves setting hour_scale to “” or better, somewhat removing the column showing hour_scale from Day and Week views. Can I achieve it by

“scheduler.templates.hour_scale = function(s,e, obj){ return “”; };”?

Also, just want to confirm that when I replace event_header and event_bar_date, I should put the two lines of your code to the javascript section of our code.

Thanks again!

Hello,

Yes.

scheduler.xy.scale_width = 0;
And in CSS:

.dhx_scale_holder { display: none; }
Kind regards,
Ilya

Thank you so much!! :smiley: