Hi everyone,
I have a problem. Autogrow plugin does not work properly and I need to change a size of editor dynamically. I'm trying to achieve dynamic resize for last 3 days, and nothing leads me to success. Please help )
Mon, 01/22/2007 - 07:08
#1
RE: How to resize editor?
<script type="text/javascript" src="_path_to_fckeditor.js"></script>
<script language="javascript" type="text/javascript">
var oFCKeditor = new FCKeditor('mainEditor');
oFCKeditor.BasePath = '_pah_to_FCKeditor/';
oFCKeditor.Create();
function FCKeditor_OnComplete( editorInstance )
{
FCKeditorAPI.GetInstance('mainEditor').Commands.GetCommand('FitWindow').Execute();
}
</script>
RE: How to resize editor?
See https://sourceforge.net/forum/message.p ... id=4154769