alert

calls an alert message box

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

Example

var box = scheduler.alert({
    title:"Alert",
    type:"alert-error",
    text:"You can't do this"
});

Details

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

See also
Change log

added in version 6.0

Back to top