DayPilot.Scheduler.treeEnabled

The treeEnabled property (boolean) controls whether Scheduler resources (rows) can display children in a tree structure.

Declaration

DayPilot.Scheduler.treeEnabled

Default Value

false

Notes

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

DayPilot.Scheduler.resources

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript