The floatingEvents property (boolean) enables floating event text during scrolling in the JavaScript Scheduler component.
DayPilot.Scheduler.floatingEventstrueSet this property to false to disable the floating event text feature.
JavaScript
const dp = new DayPilot.Scheduler("dp", {
floatingEvents: false,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
floatingEvents: false,
// ...
};React
<DayPilotScheduler
floatingEvents={false}
{/* ... */}
/>Vue
<DayPilotScheduler
:floatingEvents="false"
<!-- ... -->
/>Floating Events [doc.daypilot.org]
Event calendar/scheduling AJAX components. Available for JavaScript/HTML5/jQuery, ASP.NET, ASP.NET MVC. Build resource booking, project management, time tracking applications, personal and shared event calendars.
DayPilot