New to Kendo UI for Angular? Start a free 30-day trial
DialogCommand
The list of the dialog commands that are accepted by the openDialog
method.
The supported dialog commands are:
createLink
viewSource
insertFile
insertImage
tableWizard
ts
// Opens a `createLink` dialog.
editor.openDialog('createLink');
// Opens a `viewSource` dialog.
editor.openDialog('viewSource');
type
DialogCommand = "createLink" | "insertFile" | "insertImage" | "viewSource";