Search code examples
javascriptjquerywysiwygaloha-editor

How to disable Aloha Editor toolbar?


Is there a way to disable Aloha's ExtJS toolbar in the same way as sidebar?

Aloha.settings =
    modules: ['aloha', 'aloha/jquery']
    editables: '.editable'
    jQuery: $
    sidebar:
        disabled: true
    toolbar:
        disabled: true # does not work

enter image description here


Solution

  • Mark element with class

    <div class="editable notoolbar"></div>
    

    Use event:

    Aloha.ready(function () {
        var $ = Aloha.jQuery;
        Aloha.bind('aloha-editable-activated', function () {
            if ($(Aloha.activeEditable.obj[0]).hasClass("notoolbar")) {
                $(".aloha-toolbar").hide();
            }
        });
    });