我目前正在使用Joomla 2.5 WYSIWYG并且我正在尝试添加自定义html模块,但文本编辑器字段区域限制了允许的字符数!
所以我的问题是;如何增加文本字段中允许的字符数?
我想要这个的原因是因为我添加的javascript代码太长而无法保存。
请帮助解决任何问题,谢谢。
答案 0 :(得分:0)
Joomla 2.5的文章管理器的TinyMCE编辑器中的textarea大小非常小,特别是对于习惯于Joomla 1.5中可用的较大可编辑区域的人。
您可以通过单击右下角的对角线区域并上下拖动来更改此高度,但每次会话结束后大小将重置。这是你如何硬编码你选择的身高......
编辑在... plugins / editors / tinymce / tinymce.php
中找到的文件然后从......
更改第723行(或其左右)$editor = '<textarea name="' . $name . '" id="' . $id .'" cols="'. $col .'" rows="' . $row . '" style="width: ' . $width . ';
height:' . $height . ';" class="mce_editable">' . $content . "</textarea>\n" .
为...
$editor = '<textarea name="' . $name . '" id="' . $id .'" cols="'. $col .'" rows="' . $row . '" style="width: ' . $width . ';
height:500px;" class="mce_editable">' . $content . "</textarea>\n" .
用您选择的高度替换高度值。
它可能对你有所帮助。谢谢你