Is it possible to divide block (cell) in hotel scheduler?
Small blocks should represent time period in day.
So if I divide it to 6 smaller block, each block is going to represent 4hours.
Thank you
Thanks a lot! I change it to 360 // 6 hours
Then change .addHours to 6.
dp.timeline = [];
var start = date.getDatePart().addHours(6);
It is working, but it seems its loading calendar really slowly
Comment posted by Dan Letecky [DayPilot] 10 years ago.
The rest of the Scheduler shouldn't be affected much because by default it uses progressive rendering for cells and events (so it doesn't depend on the absolute grid size).
However, if you see a performance drop you may need to use a shorter timeline (e.g. 1 week instead of 1 month).
This question is more than 1 month old and has been closed. Please create a new question if you have anything to add.