0

基本上:在缩写设置中可以配置面板可见性

var settings = {
BasePath: '/',                      // path to ajax file browser files 
Id: 'AjaxFileBrowserContainer',     // ID of the parent control 
Url: 'http://webdavserver.com',     // the root folder to be displayed
Style: 'height: 100%; width: 100%',
MsOfficeTemplatesPath: 'http://webdavserver.com/MSOfficeTemplates/',
SelectedFolder: '/Pictures',        // folder to be selected
Panels: {
    Folders: { Show: false },
    FilesView: { Show: false },
    Toolbar: { Show: false },
    AddressBar: { Show: false },
    UploadPanel: { Show: true },
    UploadProgressPanel: { Show: true }
}

};

或以后,也可以显示或隐藏面板

instanceName.SetShowUploadPanel(true);

但是这些语句都没有使上传面板可见,所以有没有办法在没有文件面板的情况下显示上传面板?

4

1 回答 1

0

Unfortunately currently there is no way to show Upload Panel only. It is a part of a Files View panel and it is visible only if Files View panel is visible. The only solution would be to modify the source codes (the payed version is provided with source codes).

于 2015-03-03T20:10:58.680 回答