The forum operates in read-only mode. Please head to StackOverflow for support.
CKEDITOR.editorConfig = function( config ) { config.toolbar = 'Basic'; };
CKEDITOR.replace( 'yourTextareaName', { toolbar : 'Basic' });
Re: Toolbar Problem: What am I missing?
CKEDITOR.editorConfig = function( config ) { config.toolbar = 'Basic'; };If you are using special config in replace function you have to set
CKEDITOR.replace( 'yourTextareaName', { toolbar : 'Basic' });Alternativly you can take a look at /_samples/api_dialog.html file.
Re: Toolbar Problem: What am I missing?