Indicating "days-off"

Hi,

What’s a recommended way to indicate “days-off”?
or e.g. un-availability for a section?

e.g. where the section/resource is on vacation / lunch break, etc…

Thanks!

Check time-markers
docs.dhtmlx.com/scheduler/limits … rtaindates

If some day need to be removed for all users - it possible to alter the time scale
docs.dhtmlx.com/scheduler/custom_scales.html

Thanks,

Is there any way to specify the marker for a section_id (as in the the units example?)

So that only that section/unit/room is marked as unavailable?

i.e. docs.dhtmlx.com/scheduler/units_view.html

Thanks,

Hi,
yes, you can use “sections” parameter
//blocks each Sunday and Wednesday just for an item with id=2
scheduler.addMarkedTimespan({
days: [0,3],
zones: “fullday”,
type: “dhx_time_block”,
css: “gray_section”,
sections: { timeline: 2}
});
More info in the “Configuration object properties”:
docs.dhtmlx.com/scheduler/api__s … espan.html