I can successfully create and destroy CKEditor instances with firebug console
but for some reason I can't get the config method to work.. which would be
very helpful for trying out different configs on the page..
for instance.. when I put this in firebug..
I get no change in editor. . same for toolbar config, etc.
thanks..
but for some reason I can't get the config method to work.. which would be
very helpful for trying out different configs on the page..
for instance.. when I put this in firebug..
CKEDITOR.config.height = 600;
I get no change in editor. . same for toolbar config, etc.
thanks..

Re: Can't change CKEditor config settings in firebug !?
http://docs.cksource.com/ckeditor_api/s ... tml#resize
Re: Can't change CKEditor config settings in firebug !?
CKEDITOR.instances.content.destroy() CKEDITOR.replace('content') CKEDITOR.replace( 'content', { toolbar : 'Basic', uiColor : '#9AB8F3' }); CKEDITOR.instances.content.resize( 900, 300 );Re: Can't change CKEditor config settings in firebug !?
Re: Can't change CKEditor config settings in firebug !?
starting to get hang of this.. here's a sequence that worked for me in firebug:
CKEDITOR.instances // to find out object .. in this case "acontent" Object acontent: a.editor CKEDITOR.instances.acontent.destroy() CKEDITOR.replace( 'acontent', { toolbar : 'Basic', uiColor : '#9AB8F3' }); CKEDITOR.instances.acontent.resize( 600, 300 );the result is an editor with different toolbar, color and size..
I don't know if I'm doing it right but seems to work !