Focus on first input field - Editor form

Focus on first input field - Editor form

balnysbalnys Posts: 10Questions: 1Answers: 0
edited October 2013 in Editor
Hello,

Is where are a proper way to disable first input field's focus on editor form?

Thank you.

Replies

  • allanallan Posts: 61,726Questions: 1Answers: 10,110 Site admin
    So that is doesn't focus when the form is opened?

    Currently there isn't a build in way of disabling that, but you could use an event to blur the default focus:

    [code]
    editor.on('onOpen', function () {
    document.activeElement.blur();
    } );
    [/code]

    I think should do it, although I'm on an iPad atm so can't test it just now - will do so when I get back to my desktop.

    Allan
This discussion has been closed.