想要一个专用的按钮AjaxFileManager for TinyMCE

时间:2012-09-17 18:26:36

标签: php javascript tinymce

我想在tinyMCE编辑器中添加一个按钮,它将打开AjaxFileBrowser并选择一个文件并单击选择按钮将返回编辑器中的文件路径,就像在图像/媒体中一样插入图像/媒体窗口的URL字段。

实际上,我需要一种方法来添加一种直接访问AjaxFileManager的方法。

setup : function(ed) {
    ed.addButton('MyButton', {
        title : 'MyButton',
        image : './images/copy.jpg',
        onclick : function() {
        ajaxfilemanager('','','file',window); // The first arguement is return field as I know but how to use it??
            ed.focus();
            ed.selection.setContent('<tittle>' + ed.selection.getContent() + '</tittle>');
        }
    });
}

是否有任何出色的文档。请建议我!!

0 个答案:

没有答案