That entry is defined in such file (you can see it by clicking the link), although it's compressed in the release code.
But in order to change the configuration you don't have to change the source files, and you should use instead the config object at creation time. Just look at the samples.
Thanks for the replies, but I'm still 100% confused. (I have been programming computers since 1980)
alfonsoml wrote:The documentation is right.
That entry is defined in such file (you can see it by clicking the link), although it's compressed in the release code.
But in order to change the configuration you don't have to change the source files, and you should use instead the config object at creation time. Just look at the samples.
What config object at creation time? What is a config 'object'? Looking at the samples doesn't help.
Do you seriously mean that you don't know what's an object in javascript? If that's the case I guess that following the documentation will be a little harder as it's meant for developers with some minimum knowledge about javascript.
// Replace the <textarea id="editor1"> with an CKEditor instance.
var editor = CKEDITOR.replace( 'editor1',
{
// Defines a simpler toolbar to be used in this sample.
// Note that we have added out "MyButton" button here.
toolbar : [ [ 'Source', '-', 'Bold', 'Italic', 'Underline', 'Strike','-','Link', '-', 'MyButton' ] ]
});
Re: Documentation is wrong. There is no plugins/toolbar fold
That entry is defined in such file (you can see it by clicking the link), although it's compressed in the release code.
But in order to change the configuration you don't have to change the source files, and you should use instead the config object at creation time. Just look at the samples.
Re: Documentation is wrong. There is no plugins/toolbar fold
http://docs.cksource.com/CKEditor_3.x/D ... de/ToolbarToolbar Customization
Re: Documentation is wrong. There is no plugins/toolbar fold
What config object at creation time? What is a config 'object'?
Looking at the samples doesn't help.
Re: Documentation is wrong. There is no plugins/toolbar fold
Re: Documentation is wrong. There is no plugins/toolbar fold
Re: Documentation is wrong. There is no plugins/toolbar fold
// Replace the <textarea id="editor1"> with an CKEditor instance. var editor = CKEDITOR.replace( 'editor1', { // Defines a simpler toolbar to be used in this sample. // Note that we have added out "MyButton" button here. toolbar : [ [ 'Source', '-', 'Bold', 'Italic', 'Underline', 'Strike','-','Link', '-', 'MyButton' ] ] });Re: Documentation is wrong. There is no plugins/toolbar fold
CKEDITOR.replace( 'body_edited', { toolbar : 'Basic', uiColor : '#cdd3e5' } );Re: Documentation is wrong. There is no plugins/toolbar fold
{ toolbar : 'Basic', uiColor : '#cdd3e5' }Re: Documentation is wrong. There is no plugins/toolbar fold