我需要将参数数据发送到对话框这是我在plugin.js中的代码(右键单击)
editor.addCommand( 'editDialog', {
exec: function( editor) {
CKEDITOR.currentInstance.openDialog('editDialog');
}
});
if ( editor.contextMenu )
{
editor.addMenuGroup( 'myGroup' );
editor.addMenuItem( 'sliderItem',
{
label : 'Edit Gallery',
command : 'editDialog',
group : 'myGroup'
});
editor.contextMenu.addListener( function( element )
{
if ( element ){
element = element.getAscendant( 'wscms-gallery', true );
}
if ( element && !element.isReadOnly() && !element.data( 'cke-realelement' ) ){
return { sliderItem : CKEDITOR.TRISTATE_OFF};
}
return null;
});
}
Run Code Online (Sandbox Code Playgroud)
我想在右键单击并单击editgallery时将任何参数发送到editDialog
最好的祝福