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 !?
How about change config / destroy / create combo?
As for changing size see also http://docs.cksource.com/ckeditor_api/s ... tml#resize
Re: Can't change CKEditor config settings in firebug !?
... is the right answer
I am able to get this to work from firebug.. which is
nice for getting to know the config settings..
it seems like the order is key to making it work.. thanks..
Re: Can't change CKEditor config settings in firebug !?
Do not call replace() twice - it won't work and you'll see an error in Javascript console ([CKEDITOR.editor] The instance "content" already exists). Call destroy() before the second replace()
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:
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 !