I must be going bonkers but I edit the config.js file for the tool bar and nothing changes is there someplace else this can be set ?
I searched the forum but everything points to the config.js file but nothing changes reload the page and still the - been at it for 2 hours now.
HELP
I searched the forum but everything points to the config.js file but nothing changes reload the page and still the - been at it for 2 hours now.
HELP
Re: Can't Edit Toolbar
U have to mention the toolbar set name [u have mentioned in the config.js file] in the page where u have created the editor.
Re: Can't Edit Toolbar
Re: Can't Edit Toolbar
config.toolbar_TestTlBr= [
['Cut','Copy','Paste','PasteText','PasteWord','-','Print','SpellCheck'],
'/',
['Bold', 'Italic', 'Underline', 'Strike', '-', 'Subscript', 'Superscript'],
] ;
//Code for editor creation with custom tool bar
CKEDITOR.replace( 'editor1',
{
toolbar : 'TestTlBr'
});
Hope this will help
Re: Can't Edit Toolbar
Needed to add this on the page in which the editor was on after the text area field
<script type="text/javascript">
CKEDITOR.replace( 'about_us',
{
customConfig : 'fckeditor/config.js'
});
</script>
Works fine now
Thanks again
Re: Can't Edit Toolbar
<textarea name="home_page" cols="50" rows="5"><?php echo $row_rsassoc['home_page']; ?></textarea><script type="text/javascript">
CKEDITOR.replace( 'home_page',
{
customConfig : '/custom/config.js'
});
</script>
Always calls up the default toolbars
Custom Toolbar isn't being called
Can any one explain why the custom/config.js is not being called which is this
but all menu tools are showing
Been at this for 2 days now HELP
Re: [ Solved ] Can't Edit Toolbar
CKEDITOR.editorConfig = function( config )
{
// Define changes to default configuration here. For example:
// config.language = 'us';
// config.uiColor = '#AADC6E';
}
this } caused the tools not to load that had been placed below it and the default one to load instead once I removed it and placed it at the end of the file }; everything worked fine
config.toolbar_Full =
[
['Source','Save','NewPage','Preview'],
['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'],
'/',
['Image','Link','Unlink','Anchor','-','Table','HorizontalRule','Smiley','SpecialChar','PageBreak','SelectAll','RemoveFormat','Undo','Redo','-','Find','Replace'],
['Bold','Italic','Underline','Strike','-','Subscript','Superscript','NumberedList','BulletedList','-','Outdent','Indent','Blockquote','CreateDiv'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
'/',
['Styles','Format','Font','FontSize'],
['TextColor','BGColor'],
['ShowBlocks']
];
};