I FIXED IT, apparently there is a typo on de Default toolbarset. There is a '/', that should not be there, so what i did was create my own toolbarset called "Daniel" so i took the extra '/' off and it started working. And to use my new toolbarset, the thing i have to do is put this code before calling the create function, like this : $oFCKeditor->ToolbarSet = 'Daniel' ;
So this is what i did, i edited my fckconfig.js to make it look like what's below.
RE: FCK not working with FireFox, DOMDocument
RE: FCK not working with FireFox, DOMDocument
So this is what i did, i edited my fckconfig.js to make it look like what's below.
FCKConfig.ToolbarSets["Default"] = [
['Source','DocProps','-','Save','NewPage','Preview','-','Templates'],
['Cut','Copy','Paste','PasteText','PasteWord','-','Print','SpellCheck'],
['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'],
['OrderedList','UnorderedList','-','Outdent','Indent'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'],
['Link','Unlink','Anchor'],
['Image','Flash','Table','Rule','Smiley','SpecialChar','PageBreak','UniversalKey'],
['Form','Checkbox','Radio','TextField','Textarea','Select','Button','ImageButton','HiddenField'],
'/',
['Style','FontFormat','FontName','FontSize'],
['TextColor','BGColor'],
['About']
] ;
FCKConfig.ToolbarSets["Daniel"] = [
['Source','DocProps','-','Save','NewPage','Preview','-','Templates'],
['Cut','Copy','Paste','PasteText','PasteWord','-','Print','SpellCheck'],
['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'],
['OrderedList','UnorderedList','-','Outdent','Indent'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'],
['Link','Unlink','Anchor'],
['Image','Flash','Table','Rule','Smiley','SpecialChar','PageBreak','UniversalKey'],
['FontFormat','FontName','FontSize'],
['TextColor','BGColor'],
['About']
] ;
I HOPE THIS WILL HELP !!!!!!!!!!
RE: FCK not working with FireFox, DOMDocument
Hmmmm, the '/' makes a line break in the tool bar.
Insert one, and test.
Works for me!
But, if it solves your problem, go for it!
Johnny