views:

288

answers:

1

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?

+2  A: 

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

Benoit
This works, even though it does not look as nice as on SO. However, I had to add these items as well: theme_advanced_statusbar_location : 'bottom', theme_advanced_path : false, theme_advanced_resizing : true, theme_advanced_resize_horizontal : false, theme_advanced_resizing_use_cookie : true,
Ber