2

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>');
        }
    });
}

これに関する優れたドキュメントはありますか。私を提案してください!!

4

0 に答える 0