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.dialog.definition.contentObject

class private inherited

This class is not really part of the API. It is the template of the objects representing content pages inside the CKEDITOR.dialog.definitionObject.

CKEDITOR.on( 'dialogDefinition', function( evt ) {
    var definition = evt.data.definition;
    var content = definition.getContents( 'page1' );
    content.remove( 'textInput1' );
    // ...
} );

Filtering