several bookings instead of one booking over more days

Hello,
in the timeline an event is created over several days as a block. How can I create three individual bookings from a 3-day block?

Can I hide the information 19 Jan 2018 - 22 Jan 2018?

THANK YOU

hmm… if you need 3 separate events, why do you create only one?
If you want to add several events at once, unfortunately you should add them one by one.

Update for this topic:

We haven’t a ready example how to create 3 separate events at once. I can give you some tips that can help you to do it. To get start/end dates of new event, use API onEventCreated event and getEvent method
I.e. scheduler.getEvent(id).start_date
docs.dhtmlx.com/scheduler/api__ … event.html
docs.dhtmlx.com/scheduler/api__ … event.html
There is one detail that can cause difficulties. When you add new event, the lightbox is opened to set name and check other info.
To avoid it, you can hide the lightbox(but event still not be saved) when onLightbox fires, update end_date of this event and add new events.

Here is an example how to add several events without opening the ligthbox and than save them all by clicking ‘Save events’ button. docs.dhtmlx.com/scheduler/snippet/f458cbbf

You may also need these methods
docs.dhtmlx.com/scheduler/api__ … event.html
docs.dhtmlx.com/scheduler/api__ … event.html