Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a global size and height set

CKEDITOR.editorConfig = function( config )
{
  config.height = '400px';
  config.width = '600px';
  ...

And I would like to change this height and width for only one instance of the editor on a seperate page. Has anyone else accomplished this?

share|improve this question

1 Answer

up vote 3 down vote accepted

Yes. When you create the editor on the page, you can override

CKEDITOR.replace(editorName, {
            height: 448,
            width: 448,
            customConfig: '/path/to/yourconfig.js'
});

In fact as a performance recommendation you can put all the configuration options here and save the loading of the config file separately. You might do this in a shared JavaScript file of your own, parametrized to override specific values for a page.

UPDATE in response to comment

A separate config file can be used like any other setting (look above with customConfig. If you don't want any custom configs loaded use

customConfig: ''
share|improve this answer
Thanks Dove! Really appreciate it! – Trip Oct 21 '10 at 13:35
in response to performance recommendation, I tried that, but my syntax was wrong I guess? CKEDITOR.replace(editorName, config) where config was a file alongside config.js called otherConfig.js . – Trip Oct 21 '10 at 13:40
@Trip I've updated the answer if that'll help – dove Oct 21 '10 at 14:05
Thanks so much Dove! – Trip Oct 21 '10 at 14:30
Does this work with multiple instances on the CKEditor on a page? Seems that if you have multiple instances each with their own config, that the last created instance's config file is applied to all the other instances... Or am I just a moron :) – nokturnal Oct 21 '11 at 14:57
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.