Filemanager options

Hi,

I am evaluating the Blazor FileManager control and have the following question:

Could you provide a list of options that I can give to the FileManager component?
I have found a few options (AllowDragAndDrop, AllowMultiSelection, path), but I guess there should be more options available that I cannot seem to find in any of the documentation.

Any help would be highly appreciated!

Thanks in advance.

With kind regards,
Rutger

4 Replies

SP Sowmiya Padmanaban Syncfusion Team May 5, 2020 12:37 PM UTC

Hi Rutger,  
 
Greetings from Syncfusion support. 
 
We have checked your requirement with FileManager component. We would like to let you know that the following functionalities are available in our EJ2 FileManager component. 
 
1.      Renaming Functionality 
2.      Upload Functionality 
3.      Download Functionality 
4.      Cut, Copy, Paste Functionality 
5.      Drag and Drop Functionality 
6.      Create Folder Functionality. 
7.      Sorting based on time, date modified, name and so on. 
8.      Search Functionality 
9.      GetDetails based on file/folder. 
10.   MutiSelection for file/folder. 
11.   Localization Support 
12.   RTL support 
13.   You can disable and enable the navigation pane and toolbar using navigationPaneSettings and toolbarSettings. 
14.   File manager contains both details and large icon view. 
15.   Tooltip support. 
 
To more about the FileManager component. Refer the below links. 
 
 
 
 
 
The following file providers are added in Syncfusion EJ2 File Manager component. 
 
·        NodeJS file system provider 
 
To know more about the file providers. Refer the below link. 
 
 
Also, check out the following extended options that might help you customize SF controls based on your requirement. 
 
You can customize the entire accent color of the file manager component by using EJ2 theme studio 
 
You can download the custom scripts and styles for your selected controls from CRG. 
 
Please let us know, if you need any further assistance. 
 
Regards,  
Sowmiya.P 



RS Rutger Scheepens May 6, 2020 11:42 AM UTC

Thank you very much for the answer, this got me a lot further.

I am now having issues with one other thing which I hope you can help me with:

I am trying to open the FileManager and have a certain file preselected. I thought I could do that by setting Path and SelectedItems but that does not seem to work.
Could you please show me an example how I should achieve this?

Many thanks in advance!

With kind regards,
Rutger


SA Shameer Ali Baig Sulaiman Ali Baig Syncfusion Team May 7, 2020 05:52 AM UTC

Hi Rutger, 
 
Greetings from Syncfusion support. 
 
We have looked into your query on initializing the FileManager component loaded with file/folders with pre-selection. This can be achieved by using the selectedItems property of File Manager component. If you select any file/folder which reside under any folder, then you can achieve it by selecting the item using selectedItems property in fileOpen event of File Manager. 
 
For your convenience, we have prepared a simple sample of File Manager loaded with pre-selected folders. 
 
  
Please, get back to us if you need any further assistance. 
 
Regards, 
Shameer Ali Baig S. 



SA Shameer Ali Baig Sulaiman Ali Baig Syncfusion Team May 7, 2020 05:41 PM UTC

Hi Rutger, 
 
Sorry for the inconvenience. 
 
We have missed to share you the Blazor sample with the suggested solution in our last update. Please, download the Blazor application of File Manager with pre-selected files using the solution which shared in our previous update. 
 
 
<SfFileManager SelectedItems="@selectItems"> 
    <FileManagerAjaxSettings Url="/api/SampleData/FileOperations"   DownloadUrl="/api/SampleData/Download" UploadUrl="/api/SampleData/Upload"  GetImageUrl="/api/SampleData/GetImage"> 
    </FileManagerAjaxSettings> 
</SfFileManager> 
 
@code{ 
    string[] selectItems = new string[] {"Videos", "Music"}; 
} 
 
 
Please, let us know if you need any further assistance. 
 
Regards, 
Shameer Ali Baig S. 


Loader.
Up arrow icon