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.

Does anybody know how to disable CKEditor's context (right click) menu? I would expect a configuration option, but I can't find one. I am using v3.1. Thanks.

share|improve this question

4 Answers

up vote 10 down vote accepted

You need to remove the contextmenu plugin. See here for 3.1.

share|improve this answer
+1 for the link. If only their advice worked... – Upper Stage Feb 11 '10 at 18:41
Does the patch not help? dev.fckeditor.net/ticket/5012 – Pekka 웃 Feb 11 '10 at 19:22
@Upper Stage: Ah I see, crap. – Pekka 웃 Feb 11 '10 at 19:22
@Upper Stage, thanks for makign me aware of this. I will definitely skip 3.1 now. – Pekka 웃 Feb 11 '10 at 19:26
show 1 more comment

As of version 3.6.4, the other answers in this question don't work anymore. See bug #9284

The three plugins that need to be disabled (using the means discussed in this question), are contextmenu, liststyle and tabletools. So for example, using config files:

CKEDITOR.editorConfig = function(config) {
    /* Your config options */
    ...
    config.removePlugins = 'contextmenu,liststyle,tabletools';
};
share|improve this answer

With CKEditor 3.6 I was able to disable context menu by removing the contextmenu plugin as suggested above. To do this, you have to configure the editor with the removePlugins option. For instance:

CKEDITOR.replace('my_editor', {
    removePlugins : 'contextmenu'
});

It can also be disabled globally from the config.js file:

CKEDITOR.editorConfig = function(config) {
    /* Your config options */
    ...
    config.removePlugins = 'contextmenu';
};
share|improve this answer

Unfortunately since CKEditor 3.6/4.0 this does not work anymore.

See bug report: http://dev.ckeditor.com/ticket/9284

share|improve this answer
1  
Isn't this what Xeon06 said and he provided also the new configuration? – AlfonsoML Sep 18 '12 at 15:45
yes, I read and tried that, does not work for me either (with latest stable 3.6.4). – Echt Einfach TV Sep 20 '12 at 13:50
As I am catching the paste event: ev.editor.on('paste', function(evt) { ... } I thought this would interfere with the provided solution. However, after removing this, I still get the context menu of ckeditor. This is my current config.js – Echt Einfach TV Sep 20 '12 at 14:31

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.