I was unable to find this information on the fckeditor website.. (maybe I'm blind?)
1) Is it possible to have multiple fckeditor instances on ONE page?
2) What happens if an "incompatible" browser is detected? Will fckeditor automatically revert to display of a textbox with the HTML code inside? This would be an ideal situation to handle older/incompatible browsers.
3) Can I add my own custom "insert text" buttons to the toolbar? In other words, if I have some customized text that I constantly need to add to my edited text.. can I make a button to click so this is easy to do?
4) Can I use "array names" for my editor name?
For example, will this work?
var oFCKeditor = new FCKeditor( 'data[textdata][0] ) ;
1) Is it possible to have multiple fckeditor instances on ONE page?
2) What happens if an "incompatible" browser is detected? Will fckeditor automatically revert to display of a textbox with the HTML code inside? This would be an ideal situation to handle older/incompatible browsers.
3) Can I add my own custom "insert text" buttons to the toolbar? In other words, if I have some customized text that I constantly need to add to my edited text.. can I make a button to click so this is easy to do?
4) Can I use "array names" for my editor name?
For example, will this work?
var oFCKeditor = new FCKeditor( 'data[textdata][0] ) ;
RE: A few simple questions...
Yes. The documentation leaves a lot to be desired.
1) Yes, you can have multiple insances on one page
var oEditor1 = new FCKeditor etc
var oEditor2 = new FCKeditor etc
2) I use a seperate plain text editor for incompatible browsers, but you could use FCKEditor - check out the FCKeditor_OnComplete function, at a guess you could trigger behaviour at this point
3) You can add any buttons to the toolbar that do any activity you wish - checkout plugins
4) I assume you mean pass text as an array item into the editor - if so yes
Some very short answers to potentially very long questions - hope this helps