DayPilot.Scheduler.messageHideAfter

Sets the delay before the message is automatically hidden, in milliseconds.

Declaration

DayPilot.Scheduler.messageHideAfter;

Default Value

  • 5000

Description

By default the message bar is hidden after 5 seconds.

The message bar is hidden immediately if the user hovers over it or if a drag and drop operation is started.

Example

<div id="dp"></div>
<script type="text/javascript">
  var dp = new DayPilot.Scheduler("dp");
// ...
dp.messageHideAfter = 5000;
dp.init(); </script>