The messageBarPosition property (string) sets where the message bar is displayed in the JavaScript Scheduler.
Declaration
DayPilot.Scheduler.messageBarPositionPossible Values
"Top"- displays the message bar above the Scheduler grid."Bottom"- displays the message bar below the Scheduler grid.
Default Value
"Top"Examples
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"
<!-- ... -->
/>See Also
Message Bar [doc.daypilot.org]
DayPilot.Scheduler.messageHideAfter
DayPilot.Scheduler.messageHideOnMouseOut
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot