Hello,
ersteinmal I come from germany and my english was translated google.de.
I have an important question.
Can I use the toolbar (FCKToolbarSet.Collapse ()) from outside control?
I want the toolbar on an extra link retracted and extended.
Hope that someone understands me, it is very important.
In the file fckeditor.html is a function call as follows:
onClick = "FCKToolbarSet.Collapse (); return false;"
How can I but now controlled from the outside?
Thanks Kojak
ersteinmal I come from germany and my english was translated google.de.
I have an important question.
Can I use the toolbar (FCKToolbarSet.Collapse ()) from outside control?
I want the toolbar on an extra link retracted and extended.
Hope that someone understands me, it is very important.
In the file fckeditor.html is a function call as follows:
onClick = "FCKToolbarSet.Collapse (); return false;"
How can I but now controlled from the outside?
Thanks Kojak
Re: Toolbar Collapse () from outside
In this post it is more clear what you want
))
Something like this may do
var oEditor = FCKeditorAPI.GetInstance('FCKeditor1') ;
this gives us FCK object, then you may try
if (oEditor) oEditor.FCKToolbarSet.Collapse ();
Haven't try it actually. Maybe I will in some short while
Re: Toolbar Collapse () from outside
Thanks..
Kodi