如何在CKEDITOR 4.0上使用resize事件?

时间:2013-05-30 05:38:19

标签: javascript ckeditor

如何使用CKEDITOR 4.0的resize 事件

我需要在编辑器调整大小时设置一些属性。 在CKEDITOR 4.0 API事件就在那里。但我不知道如何使用它。

enter image description here

任何人都可以告诉我如何使用它..

2 个答案:

答案 0 :(得分:5)

解决方案:

//After the editor instance created add the resize event
CKEDITOR.on('instanceCreated', function(ev) {
    ev.editor.on('resize',function(reEvent){
         alert( 'The editor resized' );
     });
 });

答案 1 :(得分:5)

使用instanceCreated事件对我不起作用,但instanceReady做了:

CKEDITOR.on('instanceReady',function(ev) {
    ev.editor.on('resize',function(reEvent){
        //your code here
    });
});