我一整天都在寻找这个,但对话框选项卡更改似乎没有触发任何事件。当显示/更改/单击对话框选项卡时,有什么方法可以触发某些功能?我的意思是单击或显示它的那一刻,但不仅仅是在某些对话框元素更改或 onOk 上获得活动选项卡。
使用最新的CKEditor 4.4.5
谢谢
有一个对话框事件“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
dialog.on("selectPage", function (ev) {
console.log("changed");
})
dialog.on("selectPage", function (ev) {
console.log(ev.data);
// Your code with param ev.data here
});