从tinymce捕捉一个关闭的窗口电话

时间:2013-01-14 05:47:52

标签: tinymce

每当一个tinymce窗口关闭时,我想通过ajax重新加载我的页面中的某些元素,但是我找不到任何可以使用的任何事件调用的引用。 This page提到了onClose事件,但我无法在tinymce api中找到它的页面。

1 个答案:

答案 0 :(得分:0)

不,没有onClose事件,但是我的用户是onRemove事件。这是

的配置初始化代码
// Adds an observer to the onRemove event using tinyMCE.init
tinyMCE.init({
   ...
   setup : function(ed) {
      ed.onRemove.add(function(ed) {
          console.debug('Editor was removed: ' + ed.id);
      });
   }
});