message

calls a message box of the specified type

HTMLElement message(object config);
configobjectthe message box's configuration
HTMLElementthe div container of the message box

Example

var box = scheduler.message({ 
    type:"confirm-warning", 
    text:"Are you sure you want to do it?"
});

Details

For details about the supported configuration options of a message box, see the Popup Messages and Modal Boxes article.

See also
Change log

added in version 6.0

Back to top