Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create a resizeable TinyMCE textarea?

I have a Django form using textareas and TinyMCE for text entry.

I would like to add a slider to change the vertical size of the textarea, like SO has them so nicely.

How can this be done?

like image 856
Ber Avatar asked Nov 03 '09 12:11

Ber


People also ask

How do I resize TinyMCE?

Clicking and dragging the resize handle in the bottom right-hand corner of the editor.

How do I put content in TinyMCE?

When you're using TinyMCE in your apps, and a user requirement is to edit content previously stored somewhere else (like in a CMS, which Tiny works well with), what you need is a way to populate the editor with that content. You can do this using the setContent() API method.


1 Answers

Just add 'theme_advanced_resizing : true' In the tyniMCE init call

like image 200
Benoit Avatar answered Nov 13 '22 04:11

Benoit