I have 2 questions:
1. I want to configure the functionalities in the FCKEditor so some of the buttons in the default toolbar don't appear. How could I do that?
2. Also, I could come with my own setting with only those functionalities that I want by adding some lines in fckconfig.js:
- Code: Select all
FCKConfig.ToolbarSets["MyFunc"] = [
['Bold','Italic','-','OrderedList','UnorderedList','-','Link','Unlink','-','About']
] ;
But the problem is I don't want to edit this file since it comes with the framework. I just want to configure it on my application. Is there any way I can do? Thanks.