如何在CKEditor 4中捕获对话框选项卡?

时间:2014-10-02 08:03:42

标签: javascript events dialog ckeditor

我一整天都在寻找这个,但似乎没有在对话框标签更改时触发事件。当显示/更改/单击对话框选项卡时,有没有办法触发某些功能?我的意思是它被点击或显示的那一刻,但不仅仅是在某些对话框元素更改或onOk上获得活动标签。

使用最新的CKEditor 4.4.5

由于

2 个答案:

答案 0 :(得分:1)

有一个对话事件“selectPage”(http://docs.ckeditor.com/#!/api/CKEDITOR.dialog-event-selectPage

例如:

 return {
         title : editor.lang.googlemaps.title,
         minWidth : 500,
         minHeight : 460,
         onLoad : function()
         {
            this.on('selectPage', function (e) {
               // your code
            });
         }
}

源: http://ckeditor.com/forums/Support/How-add-selectPage-listener

答案 1 :(得分:0)

dialog.on("selectPage", function (ev) {
            console.log("changed");
        })