(New page: {{title:Establishing the button in the toolbar}}) |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
− | + | == Establishing the button in the toolbar == | |
+ | |||
+ | You should create a new toolbar in your custom [[FCKeditor 2.x/Developers Guide/Configuration/Configuration File|Configuration File]] to reference the plugin: | ||
+ | <pre>//custom config.js - My custom Configuration File | ||
+ | FCKConfig.ToolbarSets['PluginTest'] = [ | ||
+ | ['SourceSimple'], | ||
+ | ['My_Find','My_Replace','-','Placeholder'], | ||
+ | ['StyleSimple','FontFormatSimple','FontNameSimple','FontSizeSimple'], | ||
+ | ['Table','-','TableInsertRowAfter','TableDeleteRows','TableInsertColumnAfter','TableDeleteColumns','TableInsertCellAfter','TableDeleteCells','TableMergeCells','TableHorizontalSplitCell','TableCellProp'], | ||
+ | ['Bold','Italic','-','OrderedList','UnorderedList','-','Link','Unlink'], | ||
+ | '/', | ||
+ | ['My_BigStyle','-','Smiley','-','About'] | ||
+ | ] ; | ||
+ | </pre> | ||
+ | In the given example, 'Placeholder', 'My_Find', 'My_replace' and the table commands are implemented by plugins. |
Latest revision as of 15:09, 17 January 2008
Establishing the button in the toolbar
You should create a new toolbar in your custom Configuration File to reference the plugin:
//custom config.js - My custom Configuration File FCKConfig.ToolbarSets['PluginTest'] = [ ['SourceSimple'], ['My_Find','My_Replace','-','Placeholder'], ['StyleSimple','FontFormatSimple','FontNameSimple','FontSizeSimple'], ['Table','-','TableInsertRowAfter','TableDeleteRows','TableInsertColumnAfter','TableDeleteColumns','TableInsertCellAfter','TableDeleteCells','TableMergeCells','TableHorizontalSplitCell','TableCellProp'], ['Bold','Italic','-','OrderedList','UnorderedList','-','Link','Unlink'], '/', ['My_BigStyle','-','Smiley','-','About'] ] ;
In the given example, 'Placeholder', 'My_Find', 'My_replace' and the table commands are implemented by plugins.