Mohammed Nagoor
Mohammed Nagoor

Reputation: 884

Joomla 3.2 doesn't supporting tinymce editor with "simple" theme layout

In global, I have used the "advanced" theme layout for Tiny MCE editor. In a single, I used the "Simple" theme layout

I have used the below code for Joomla 3.1

tinyMCE.init({
 mode : "textareas",
 editor_selector : "mceEditor",
 theme : "simple"
});

Upvotes: 0

Views: 916

Answers (1)

Lodder
Lodder

Reputation: 19733

You could always load the editor using the JFactory::getEditor() method like so:

$editor = JFactory::getEditor();
echo $editor->display("desc", "", "400", "100", "150", "10", 1, null, null, null, array('mode' => 'simple'));

If not, then have a look at line 565 of plugins/editors/tinymce/tinymce.php where the script for the simple editor starts

Hope tis helps

Upvotes: 1

Related Questions