DayPilot.Scheduler.messageBarPosition

The messageBarPosition property (string) sets where the message bar is displayed in the JavaScript Scheduler.

Declaration

DayPilot.Scheduler.messageBarPosition

Possible 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.message()

DayPilot.Scheduler.messageHideAfter

DayPilot.Scheduler.messageHideOnMouseOut

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript