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.treeAutoExpandDefault Value
trueExamples
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
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot