New to Kendo UI for Angular? Start a free 30-day trial
DialogCommand
Lists the dialog commands accepted by the openDialog method.
Supported dialog commands:
createLinkviewSourceinsertFileinsertImagetableWizard
typescript
// Open a `createLink` dialog.
editor.openDialog('createLink');
// Open a `viewSource` dialog.
editor.openDialog('viewSource');
type DialogCommand = "createLink" | "insertFile" | "insertImage" | "viewSource";