I'm trying to customize the toolbar on the Administration > Email queue > Send e-mail page.
I've added this line to fckeditor.js.
FCKConfig.ToolbarSets["EmailQueue"] = [
['Source', '-', 'Preview'],
['Cut', 'Copy', 'Paste', 'PasteText', 'PasteWord', '-', 'Print'],
['Undo', 'Redo', '-', 'Find', 'Replace', '-', 'SelectAll', 'RemoveFormat'],
['Bold', 'Italic', 'Underline', 'StrikeThrough', '-', 'Subscript', 'Superscript'],
['OrderedList', 'UnorderedList', '-', 'Outdent', 'Indent'/*, 'Blockquote'*/],
['JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyFull'],
['InsertLink', 'Unlink', 'Anchor'],
['InsertImageOrMedia', 'QuicklyInsertImage', 'Table', 'Rule', 'Smiley', 'SpecialChar', 'PageBreak'],
['InsertBizForms', '-', 'InsertInlineControls', '-', 'InsertPolls', '-', 'InsertRating', '-', 'InsertYouTubeVideo'],
'',
'/',
['Style', 'FontFormat', 'FontName', 'FontSize'],
['TextColor', 'BGColor'],
//['AutoSave'],
['FitWindow', 'ShowBlocks'] // No comma for the last row.
];
I then went to CMSModules/EmailQueue/SendEmail.aspx and added a toolbar property to the CMSHtmlEditor control:
<cms:CMSHtmlEditor ID="htmlText" runat="server" Width="625" Height="400px" ToolbarSet="EmailQueue" />
I then deleted my cache from firefox and went back to the page. The toolbar looks the same as it did originally. How can I add the source button? What am I doing wrong?
Thanks!
Joe Hoppe