如何解决CKeditor最小化IE中的问题?

时间:2014-05-29 07:52:49

标签: asp.net ckeditor

我在ckeditor项目中添加了asp.net。在最大化后点击Maximize/Minimize时,它不会恢复为原始尺寸,问题仅在IE中发生,它在FFChrome中正常工作。

我使用的是版本:CKEditor 4.3.3(修订版7841b02)

我的config.js是

CKEDITOR.editorConfig = function(config) {
config.toolbar = 'MyToolbar';
config.removePlugins = 'resize,elementspath';
config.image_previewText = CKEDITOR.tools.repeat(' ', 100);
// Toolbar configuration generated automatically by the editor based on     config.toolbarGroups.
config.toolbar_FullOption =
[
    { name: 'document', groups: ['mode', 'document', 'doctools'], items: ['Source', '-',  'Save', 'NewPage', 'Preview', 'Print', '-', 'Templates'] },
    { name: 'clipboard', groups: ['clipboard', 'undo'], items: ['Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo'] },
    { name: 'editing', groups: ['find', 'selection', 'spellchecker'], items: ['Find', 'Replace', '-', 'SelectAll', '-', 'Scayt'] },
   //{ name: 'forms', items: ['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField'] },
        '/',
    { name: 'basicstyles', groups: ['basicstyles', 'cleanup'], items: ['Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat'] },
    { name: 'insert', items: ['Image', 'Flash', 'Table', 'HorizontalRule', 'Smiley', 'SpecialChar', 'PageBreak', 'Iframe'] },
    { name: 'paragraph', groups: ['list', 'indent', 'blocks', 'align', 'bidi'], items:    ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote', 'CreateDiv', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock', '-', 'BidiLtr', 'BidiRtl', 'Language'] },
    { name: 'links', items: ['Link', 'Unlink', 'Anchor'] },

    '/',
    { name: 'styles', items: ['Styles', 'Format', 'Font', 'FontSize'] },
    { name: 'colors', items: ['TextColor', 'BGColor'] },
    { name: 'tools', items: ['Maximize', 'ShowBlocks'] },
    { name: 'others', items: ['-'] },
    { name: 'about', items: ['About'] }
];
};

如何解决此问题?下面给出了输出的屏幕截图

Initial Window

Editor after when maximized

Editor when minimized

0 个答案:

没有答案