Basically: in the initials settings can configure the panel visibility
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 }
}
};
or later, also can show or hide the panel
instanceName.SetShowUploadPanel(true);
But none of these statements make the Upload Panel visible, so there any way to show the upload panel without the File panel?.