wwWebFckEditor::ToolbarSet
The toolbar layout to display: Default - Basic
FCK Editor ships with the above ToolbarSets, but you can customize these by overridding settings in the configuration files.
One way to override toolbar button configuration in your page is by defining an ClientOnload handler and then using the following code in it:
csharp
csharp
<script type="text/javascript">
function FckLoaded(Editor,Config)
{
Config.ToolbarSets["Common"] = [
['Source','DocProps','-','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','Table','Rule','Smiley','SpecialChar'],
'/',
['Style','FontFormat','FontName','FontSize'],
['TextColor','BGColor'],
['FitWindow','-','About']
];
Config.ToolbarSet = "Common";
}
</script>
Parameters
Initial value: Default
See also
Class wwWebFckEditor© West Wind Technologies, 2025 • Updated: 2025-03-12
Comment or report problem with topic