The messageHideAfter property (number) sets the delay before the message bar is automatically hidden, in milliseconds.
Declaration
DayPilot.Month.messageHideAfterDefault Value
5000Examples
JavaScript
const dp = new DayPilot.Month("dp", {
messageHideAfter: 8000,
// ...
});
dp.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
messageHideAfter: 8000,
// ...
};React
<DayPilotMonth
messageHideAfter={8000}
{/* ... */}
/>Vue
<DayPilotMonth
:messageHideAfter="8000"
<!-- ... -->
/>See Also
Message Bar [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot