Shows a message using the integrated message bar.
DayPilot.Scheduler.message(text, options);
Options:
The delay overrides the default delay which can be set using messageHideAfter property.
This call will display a message for 5 seconds:
dp.message("Welcome!", {delay: 5000});
Displaying a message with a custom CSS class:
dp.message("Welcome!", {cssClass: "msg"} );