如何使用CKEDITOR 4.0的resize 事件。
我需要在编辑器调整大小时设置一些属性。 在CKEDITOR 4.0 API事件就在那里。但我不知道如何使用它。
任何人都可以告诉我如何使用它..
答案 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
});
});