0
votes

In the three editors "Aloha", "TinyMCE" and "CKEditor", i am trying to separate the text-field and the toolbar, and keep the toolbar visible at all times.

TinyMCE, Using

inline: true,
fixed_toolbar_container: "div#mytoolbar",

i have been able to do the separation, but the toolbar hides when the text-field is out of focus.

Aloha and CKEditor i don't have anything yet.

1

1 Answers

0
votes

In case of CKEditor, check out the Sharedspace plugin and config.sharedSpaces option. There's also a sample.

CKEDITOR.inline( 'inline1', {
    extraPlugins: 'sharedspace',
    removePlugins: 'floatingspace,resize',
    sharedSpaces: {
        top: 'top',
        bottom: 'bottom'
    }
} );