﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
12509	Widget's content menu not shown on widget's editables	Matti Järvinen		"Widget contains couple of editables.

When right clicking on widget's editable context menu is not shown. When right clicking non editable part of the widget context menu is shown.

In plugins init definition editor.widgets.add definition init: 

{{{
this.on( 'contextMenu', function( evt ) {
	evt.data.MyPlugin = CKEDITOR.TRISTATE_OFF;
} );
}}}

And in the last lines of plugin init
{{{
if ( editor.contextMenu ) 
{
	editor.addMenuGroup( 'MyPlugin' );
	
	editor.addMenuItem( 'MyPlugin', 
		{
			label: editor.lang.MyPlugin.label,
			command: 'MyPlugin',
			group: 'MyPlugin'
		}
	);
}
}}}"	Bug	closed	Normal		General		invalid		
