Hi,
I have read the documentation and i have found how to modify the toolsbar but i don't find how to include this in my php code :s
i have this :
I have tried this in my page :
But it doesn't work. Can you help me please
Thx
P.S: sorry for my english but i'm french :s
I have read the documentation and i have found how to modify the toolsbar but i don't find how to include this in my php code :s
i have this :
FCKConfig.ToolbarSets["Default"] = [ ['Source'], ['Cut','Copy','Paste','PasteText','PasteWord','-','SpellCheck'], '/', ['Bold','Italic','Underline','-','Superscript'], ['OrderedList','UnorderedList','-','Outdent','Indent'], ['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull','-','Link','Image','-','Table','SpecialChar'], '/', ['FontName','FontSize','TextColor','BGColor'] // No comma for the last row. ] ;
I have tried this in my page :
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = '../../fckeditor/' ;
$oFCKeditor->Value = 'toto' ; //
$oFCKeditor->Create() ;
$oFCKeditor->FCKConfig.ToolbarSets["Default"] = [
['Source'],
['Cut','Copy','Paste','PasteText','PasteWord','-','SpellCheck'],
'/',
['Bold','Italic','Underline','-','Superscript'],
['OrderedList','UnorderedList','-','Outdent','Indent'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull','-','Link','Image','-','Table','SpecialChar'],
'/',
['FontName','FontSize','TextColor','BGColor'] // No comma for the last row.
] ;
But it doesn't work. Can you help me please
Thx
P.S: sorry for my english but i'm french :s
