DayPilot.Scheduler.treeAutoExpand

The treeAutoExpand property (boolean) lets you configure the parent tree node auto-expansion during drag and drop event moving in the JavaScript Scheduler.

Declaration

DayPilot.Scheduler.treeAutoExpand

Default Value

true

Examples

JavaScript

const dp = new DayPilot.Scheduler("dp", {
  treeAutoExpand: false,
  // ...
});
dp.init();

Angular

<daypilot-scheduler [config]="config"></daypilot-scheduler>
config: DayPilot.SchedulerConfig = {
  treeAutoExpand: false,
  // ...
};

React

<DayPilotScheduler
  treeAutoExpand={false}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  :treeAutoExpand="false"
  <!-- ... -->
/>

See Also

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript