The messageHideAfter property (number) sets the delay before the message bar is automatically hidden (in ms).
Declaration
DayPilot.Calendar.messageHideAfterDefault Value
5000Examples
JavaScript
const calendar = new DayPilot.Calendar("dp", {
messageHideAfter: 10000,
// ...
});
calendar.init();Angular
<daypilot-calendar [config]="config"></daypilot-calendar>config: DayPilot.CalendarConfig = {
messageHideAfter: 10000,
// ...
};React
<DayPilotCalendar
messageHideAfter={10000}
{/* ... */}
/>Vue
<DayPilotCalendar
:messageHideAfter="10000"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot