Wait for TinyMCE to load

Pit Digger picture Pit Digger · Sep 13, 2011 · Viewed 27.6k times · Source

I have these two lines of code one after another.

tinymce.execCommand('mceAddControl',true,'email_body');
tinyMCE.activeEditor.setContent(data.tplCustom.htmltemplate);

Second line tries to set content even before the tinymce is done . I think cause of that I am getting " tinyMCE.activeEditor is null" error.

Is there any way to wait until its loaded ? Thanks

Answer

Red Taz picture Red Taz · Sep 3, 2013

Version 4 of TinyMCE uses a slightly different event binding method.

Version 3

// v3.x
tinymce.init({
    setup : function(ed) {
        ed.onInit.add(function(ed) {
            console.debug('Editor is done: ' + ed.id);
        });
    }
});

Version 4

// v4.x
tinymce.init({
    setup: function (ed) {
        ed.on('init', function(args) {
            console.debug(args.target.id);
        });
    }
});

Reference: http://www.tinymce.com/wiki.php/API3:event.tinymce.Editor.onInit http://www.tinymce.com/wiki.php/Tutorial:Migration_guide_from_3.x