Report an issue
Class

CKEDITOR.focusManager

class

Manages the focus activity in an editor instance. This class is to be used mainly by UI element coders when adding interface elements that need to set the focus state of the editor.

var focusManager = new CKEDITOR.focusManager( editor );
focusManager.focus();

Filtering

Properties

  • currentActive : domObject

    Indicates the currently focused DOM element that makes the editor activated.

  • hasFocus : Boolean

    Indicates that the editor instance has focus.

    alert( CKEDITOR.instances.editor1.focusManager.hasFocus ); // e.g. true
    

    Defaults to false

  • private

    _ : Object

    Object used to store private stuff.

Methods