CKEditor 4 reached its End of Life (EOL) in June 2023. From then on, it will receive no more updates, new features, bug fixes, and security patches. Visit CKEditor 5 Docs for the actively supported CKEditor or check Extended Support Model.
Report an issue
Class

CKEDITOR.dialogCommand

class

Generic dialog command. It opens a specific dialog when executed.

// Register the "link" command which opens the "link" dialog.
editor.addCommand( 'link', new CKEDITOR.dialogCommand( 'link' ) );

Filtering

Methods

  • constructor( dialogName, [ ext ] ) → dialogCommand

    Creates a dialogCommand class instance.

    Parameters

    dialogName : String

    The name of the dialog to open when executing this command.

    [ ext ] : Object

    Additional command definition's properties.

    Returns

    dialogCommand