DateCreatedBy and DateModifiedBy in FileManager is not showing?

Hi Team

Is there a logic for these fields? I need when loading the FileManager to the browser, it must show DateCreatedBy and ModifiedBy, yes the file size does show well. How can i implement these into my application? Please advice me and show if there is a sample that had been implemented it willl really help, thanks.

3 Replies 1 reply marked as answer

SP Sowmiya Padmanaban Syncfusion Team November 6, 2020 06:55 AM UTC

Hi Gcobani,  
 
Greetings from Syncfusion support. 
 
We suspect that your requirement is to add the extra column in details view of FileManager component. You can add a column by using DetailsViewSettings of FileManager component.  
 
Refer the below code snippet for detailsViewSettings. 
 
    @Html.EJS().FileManager("file").AjaxSettings(new Syncfusion.EJ2.FileManager.FileManagerAjaxSettings 
{ 
    Url = "/Home/FileOperations", 
    GetImageUrl = "/Home/GetImage", 
    UploadUrl = "/Home/Upload", 
    DownloadUrl = "/Home/Download" 
}).View(Syncfusion.EJ2.FileManager.ViewType.Details).DetailsViewSettings(new Syncfusion.EJ2.FileManager.FileManagerDetailsViewSettings 
{ 
    Columns = new List<Syncfusion.EJ2.FileManager.FileManagerColumn> 
        { 
        new Syncfusion.EJ2.FileManager.FileManagerColumn() 
        { 
        Field="name", HeaderText = "File Name", MinWidth = "50", Width = "200" 
        }, 
        new Syncfusion.EJ2.FileManager.FileManagerColumn() 
        { 
        Field="_fm_modified", HeaderText = "Date Modified", Width = "200" 
        }, 
         new Syncfusion.EJ2.FileManager.FileManagerColumn() 
              { 
                  Field="size", HeaderText = "Size", Width = "200" 
              }, 
        new Syncfusion.EJ2.FileManager.FileManagerColumn() 
        { 
        Field="_fm_created", HeaderText = "Date Created", Width = "auto"  
        } 
        } 
}).Render() 
 
 
Refer the below output screenshot. 
 
 
 
 
 
In the forum link, we have added additional column( Custom data) in the detailsView of FileManager component. 
 
 
 
If we misunderstood your requirement, could you please share the below details. 
 
1.     Share the video footage of your requirement. 
 
2.     Explain more details about your requirement. 
 
3.     Let us know which file provider service you have used to load file system in FileManager in your application. Refer the below links for file provider available in FileManager component. 
 
 
Please let us know, if you need any further assistance. 
 
Regards,  
Sowmiya.P 


Marked as answer

GC Gcobani November 6, 2020 12:50 PM UTC

Hi Team

I end up getting the same responce as shown, thanks so much. This forum does help me based on what i need from my requirements especially for using the controls in asp.net mvc.


SA Shameer Ali Baig Sulaiman Ali Baig Syncfusion Team November 9, 2020 04:40 AM UTC

Hi Gcobani, 
 
We are happy to hear that our provided solution met your requirement. Please contact us if you need any help from us. We will be happy to help you. 
 
Regards, 
Shameer Ali Baig S. 


Loader.
Up arrow icon