Is there a way to completely disable uploading in FileManager? My application requirement is for a read-only file viewer / downloader.
I know how to customize the toolbar and that's fine. But I cannot disable the drag-and-drop capability - from outside the browser to upload files.
AllowDragAndDrop was confusing at first, but I understand this is for internal moving files around inside the control, not related to drag and dropping files from a user's computer into the control.
Any CSS/JS magic to remove the upload functionality completely?
Thanks!
We figured it out by way of some css:
.e-fe-overlay {
display: none !important;
}
and some javascript:
Also if you want to remove the "Drag files..." message:
.e-empty-inner-content {
display: none !important;
}
Hi Brian
We are glad to know that the reported problem has been resolved at your end. Please let us know if you have any further queries on this. We are happy to help.
Regards,
Shereen