Hi there,
I'm facing a problem in modifying the standard behaviour of the conext menu in CKEDITOR 4.0.
I've removed the standard plugin 'table' and created another one called 'table2' for my purposes.
The problem is that when i make right-button click on the table, there appears a context menu that refers to the plugin 'table' than does not exist any more.
I've tried as well to remove all listeners, adding a line
editor.removeAllListeners();
to a block which is responsable for the editor initialization:
editor.on( 'instanceReady', function() {...})
Nevertheless, when I right click on the table, the context menu appears.
For me the most important thing is to be able to get rid of old "table" context menu and replace it with the behaviour that I need.
I appreciate any suggestions or clarifications.

You need to also remove the
You need to also remove the tabletools plugin.
Piotrek (Reinmar) Koszuliński
CKEditor JavaScript Developer
--
CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Thanks a lot!
Thanks a lot!
Nevertheless, it seems that something eludes me. I have added the line to remove the tabletools plugin, so that the above mentioned code now looks like
editor.removeMenuItem('table'); editor.removeMenuItem('tabletools');I've even removed the folder "tabletools" from the plugin folders. Nevertheless, the right click on the table reveals again all table-related operations: insert/delete row/columns etc.
At this point I think something eludes me.
I came across a strange thing that helped me to find a list of table-related plugins:
This thing contains menuItems property that contains all (I hope) available plugins. So, I added the line
editor.removeMenuItem('tabledelete');and after that the right click on the table does not show any more "delete table" item. The problems now are