文件浏览器CKEDITOR

时间:2018-10-01 14:23:33

标签: ckeditor

我是ckeditor的新手。 我正在尝试创建一个两个选项卡的对话框,允许用户浏览第一个选项卡中的上载的文件,并允许用户在第二个选项卡中上载的文件。 我正在使用API​​和SDK作为指南。 我的问题在于,当我尝试上传文件时,在filebrowser函数中应发出警报。但就我而言,我在文件浏览器上有了localhost页面。

after upload button pressed

                {
              id: 'tab2',
              label: 'Carica',
              title: 'Carica documento',
              elements: [
                {
                    type: 'file',
                    label: editor.lang.common.upload,
                    labelLayout: 'vertical',
                    id: 'upload'
                },
                {
                    type: 'fileButton',
                    label: editor.lang.common.uploadSubmit,
                    id: 'id3',
                    filebrowser: {
                        action: 'upLoad',
                        params: { type: 'Files', currentFolder: '/folder/' },
                        target: 'tab1:id1',
                        onSelect: function( fileUrl, errorMessage ) {
                            alert( 'The url of uploaded file is: ' + fileUrl + '\nerrorMessage: ' + errorMessage );
                        }
                    },
                    'for': [ 'tab2', 'upload' ]
                }
              ]
            }

感谢您提供的任何帮助! 阿莱西奥

0 个答案:

没有答案