Important changes to Tiny Cloud pricing > Find out more

NOTE: TinyMCE 5 reached End of Support in April 2023. No more bug fixes, security updates, or new features will be introduced to TinyMCE 5. We recommend you upgrade to TinyMCE 6 or consider TinyMCE 5 Long Term Support (LTS) if you need more time.

tinymce.NotificationManager

This class handles the creation of TinyMCE's notifications.

Examples

// Opens a new notification of type "error" with text "An error occurred."
tinymce.activeEditor.notificationManager.open({
   text: 'An error occurred.',
   type: 'error'
});

Methods

name summary defined by
close() Closes the top most notification. tinymce.NotificationManager
getNotifications() Returns the currently opened notification objects. tinymce.NotificationManager
open() Opens a new notification. tinymce.NotificationManager

Methods

close

close()

Closes the top most notification.

getNotifications

getNotifications():Array

Returns the currently opened notification objects.

Return value
  • Array - Array of the currently opened notifications.

open

open(args:Object)

Opens a new notification.

Parameters
  • args (Object) - A name: value collection containing settings such as: timeout, type, and message (text).

    For information on the available settings, see: Create custom notifications.

Can't find what you're looking for? Let us know.

Except as otherwise noted, the content of this page is licensed under the Creative Commons BY-NC-SA 3.0 License, and code samples are licensed under the Apache 2.0 License.