The treeEnabled property (boolean) controls whether Scheduler resources (rows) can display children in a tree structure.
Declaration
DayPilot.Scheduler.treeEnabledDefault Value
falseNotes
Set this property to true to allow resources (rows) to have children displayed as a tree.
Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
treeEnabled: true,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
treeEnabled: true,
// ...
};React
<DayPilotScheduler
treeEnabled={true}
{/* ... */}
/>Vue
<DayPilotScheduler
:treeEnabled="true"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot