Textarea not resizable
Textareas are no longer resizable when using wysihtml5.
You have to use the style attribute in the textarea.
WYSIHTML5 sets an iframe, hence you don't see the option to / can't resize it.
There are a few activities related to that at wysihtml5's project page: https://github.com/xing/wysihtml5/issues/233
and a similar one here: https://github.com/xing/wysihtml5/issues/18
zrod, so why do WYSIHTML5 gives you this setting if you can't use it? :)
Where have you seen such setting?
you can use this code to resize:
http://www.itsavesyou.com/TextArea_Resizer_example.htm
@yairEO that does not seem to be wysihtml5
i don't understand your comment.. I gave a 3rd party solution to resize the iframe since the pluging doesn't not let you do it in any way
@yairEO It does not seem to resize an iframe based on the example. However, I did not read what the code of the plugin to see if it can resize iframes. In any case, looks like resizing of wysihtml5 is set for 0.4 release :)
what do you mean doesn't not seem to resize an iframe based on the example? the example shows exactly how one can resize an iframe using a draggable hook on the bottom of it..it's super :)
I hooked it up to my wesihtml5 easily. you probably mean about expanding the iframe while writing in it, well I think that is not just a good idea as it get get really large sometimes and it's better idea to use a drag instead to change the height
@yairEO when using your proposed solution, the textarea is no longer editable.
A bit late, but I added the resize attribute using jquery:
<script>
$( document ).ready(function() {
$(".wysihtml5-sandbox").css("resize", "vertical");
});
</script>
Thanks, man. Better late than never.
That doesn't work for me. It just jumps back to the initial values when I click inside the textarea.
Resize property doesn't work for iFrame on Firefox
See the first line of the readme file
@CanoGit