﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
796	Toolbar is not visible	anonymous		"On FCKEditor Toolbar click on source and then click on FitWindow icon, the
editor is resized to maximum screenwidth and at the same time toolbar is
missing.
Now i can not minimize the editor

I have implemented FCKEditor Javascript API on aspx Page.

Code is given below

In fckconfig.js file

{{{
FCKConfig.ToolbarSets[""MyFCKToolBar""] = [
['Source','Preview','-','Bold','Italic','Underline','TextColor','BGColor',
'-'],
['Cut','Copy','Paste','PasteText','PasteWord','-'],
['Undo','Redo','Find','Replace','SelectAll','-'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull','-'],
['OrderedList','UnorderedList','Outdent','Indent','-'],
['Table','Link','Unlink','SpecialChar','FitWindow']
}}}



in aspx page


{{{
var oFCKeditor = null;
function loadFCKEditor()
{

if(oFCKeditor == null)
{
debugger;
oFCKeditor = new FCKeditor( ""<%=m_webHTMLEditor.ClientID%>"" ) ;
oFCKeditor.ToolbarSet = ""MyFCKToolBar"";
oFCKeditor.BasePath = ""./../FCKeditor/"" ;
oFCKeditor.ReplaceTextarea() ;
}

}
/// the below event fires immideatly after the FCKEditor loading.
function FCKeditor_OnComplete( editorInstance )
{
//attached onblur event...
oFCKeditor.Events.AttachEvent( ""OnBlur"", OnBlurFCKEditor) ;

}
}}}

----
Moved from SF:[[BR]]
http://sourceforge.net/tracker/index.php?func=detail&aid=1615333&group_id=75348&atid=543653"	Bug	closed	Normal		General		invalid	SF	raj_aithal@… Frederico Caldeira Knabben blueboxsw@… Alfonso Martínez de Lizarrondo
