I'm working with editable widgets in CKEditor 4.4.0. I've created widget with one editable element in it and it works OK.
But I want to give user possibility to edit editable part right after creation.
What I've tried:
Get widget editable and if it is just created - call .focus() method of this editable on widget ready event:
widget.editables.content.focus();
What I've found - that it would work only if focus call is called in defer.
So basically it works in all browsers except Chrome.
In all browsers after widget.editables.content.focus() called focus is really placed into widget's editable, because widget.focusedEditable variable contains correct value.
But in Chrome widget.focusedEditable variable stays empty, even after widget.editables.content.focus() called.