CKEditor如何添加selectPage监听器

发布于 2024-12-03 21:23:20 字数 321 浏览 2 评论 0原文

我想将 selectPage 事件的监听器添加到我的 CKEditor 插件中,但到目前为止我无法让它工作。该插件工作正常,但我的监听器无法工作。下面的警报永远不会被调用。

代码:

    var dialog = function(editor) {

        editor.on('selectPage', function(e) {
            alert("Page changed");
        });

         // rest of the plugin code
    }

我做错了什么吗?

I want to add a listener of selectPage event to my CKEditor plugin, but so far I'm unable to get it to work. The plugin works fine but my listener is not working. The alert below never gets called.

The code:

    var dialog = function(editor) {

        editor.on('selectPage', function(e) {
            alert("Page changed");
        });

         // rest of the plugin code
    }

Is there something I'm doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

樱桃奶球 2024-12-10 21:23:20

结果您必须将其添加到对话框定义中,而不是添加到对话框对象或编辑器对象上。

return {
     title : editor.lang.googlemaps.title,
     minWidth : 500,
     minHeight : 460,
     onLoad : function()
     {
        theDialog = this;

        // Act on tab switching
        theDialog.on('selectPage', function (e)
           {
              if (CKEDITOR.env.ie7Compat)
                 fixIE7display();

Turns out you'll have to add it in the dialog definition, not on the dialog object or the editor object.

return {
     title : editor.lang.googlemaps.title,
     minWidth : 500,
     minHeight : 460,
     onLoad : function()
     {
        theDialog = this;

        // Act on tab switching
        theDialog.on('selectPage', function (e)
           {
              if (CKEDITOR.env.ie7Compat)
                 fixIE7display();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文