Timing info foe multiday events

Hi,
I am using a read-only dhtmlxscheduler.
So when I am scheduling multiday events, there is no way if know the start time & end time of the event.
For a normal event there’s the timing info on the event header.

Is there a way to display the timing info for multiday events. :open_mouth:

Hello,

Sure but you need to modify scheduler.templates.event_bar_text template to include such information.
Check Event templates section in our documentation for details.

Best regards,
Ilya

Thankyou Ilya…
It worked like charm ! :slight_smile:

But there was another problem when i added the event_bar_text .
The normal recurring events event_bar_text also got updated.
So Is there a way to remove the event_bar_date.
I think this feild comes by default for other recurring events other than multiday events.


Also is there a way to wrap the text in event_bar_text ??

Hello,

scheduler.templates.event_bar_date = function(){ return ''; // so empty string will be returned }
To wrap (just an example):

scheduler.templates.event_text = function(start, end, event){ return "<span class='event_text'>"+event.text+"</span>"; }
Best regards,
Ilya