The messageBarPosition property (string) sets where the message bar is displayed in the JavaScript Scheduler.
DayPilot.Scheduler.messageBarPosition"Top" - displays the message bar above the Scheduler grid.
"Bottom" - displays the message bar below the Scheduler grid.
"Top"JavaScript
const dp = new DayPilot.Scheduler("dp", {
messageBarPosition: "Bottom",
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
messageBarPosition: "Bottom",
// ...
};React
<DayPilotScheduler
messageBarPosition="Bottom"
{/* ... */}
/>Vue
<DayPilotScheduler
messageBarPosition="Bottom"
<!-- ... -->
/>Message Bar [doc.daypilot.org]
DayPilot.Scheduler.messageHideAfter