tinymce.WindowManager
This class handles the creation of native windows and dialogs. This class can be extended to provide for example inline dialogs.
Examples
// Opens a new dialog with the file.htm file and the size 320x240
tinymce.activeEditor.windowManager.openUrl({
title: 'Custom Dialog',
url: 'file.htm',
width: 320,
height: 240
});
// Displays an alert box using the active editors window manager instance
tinymce.activeEditor.windowManager.alert('Hello world!');
// Displays a confirm box and an alert message will be displayed depending on what you choose in the confirm
tinymce.activeEditor.windowManager.confirm('Do you want to do something?', (state) => {
const message = state ? 'Ok' : 'Cancel';
tinymce.activeEditor.windowManager.alert(message);
});
Summary
Methods
Name | Summary | Defined by |
---|---|---|
Creates an alert dialog. Please don’t use the blocking behavior of this native version use the callback method instead then it can be extended. |
||
Closes the top most window. |
||
Creates a confirm dialog. Please don’t use the blocking behavior of this native version use the callback method instead then it can be extended. |
||
Opens a new window. |
||
Opens a new window for the specified url. |
Methods
alert()
alert(message: String, callback: Function, scope: Object)
Creates an alert dialog. Please don’t use the blocking behavior of this native version use the callback method instead then it can be extended.
confirm()
confirm(message: String, callback: Function, scope: Object)
Creates a confirm dialog. Please don’t use the blocking behavior of this native version use the callback method instead then it can be extended.
Examples
// Displays a confirm box and an alert message will be displayed depending on what you choose in the confirm
tinymce.activeEditor.windowManager.confirm('Do you want to do something?', (state) => {
const message = state ? 'Ok' : 'Cancel';
tinymce.activeEditor.windowManager.alert(message);
});