如何捕获 CKEditor 4 中的对话框选项卡更改?

问题描述 投票:0回答:3

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

使用最新的CKEditor 4.4.5

谢谢

javascript events dialog ckeditor
3个回答
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
投票
dialog.on("selectPage", function (ev) {
            console.log("changed");
        })

0
投票
dialog.on("selectPage", function (ev) {
   console.log(ev.data);
   // Your code with param ev.data here
});
© www.soinside.com 2019 - 2024. All rights reserved.