Skip to main content

FileManagerSettings.CustomFileInfoDisplayText Property

Allows you to display custom file information in the file tooltip and columns.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v24.2.dll

NuGet Package: DevExpress.Web.Mvc5

#Declaration

public FileManagerCustomFileInfoDisplayTextEventHandler CustomFileInfoDisplayText { get; set; }

#Property Value

Type Description
FileManagerCustomFileInfoDisplayTextEventHandler

A FileManagerCustomFileInfoDisplayTextEventHandler delegate method allowing you to change the file info.

#Remarks

The CustomFileInfoDisplayText event allows you to specify the custom file information (for example, the file size and the last modified date).

@Html.DevExpress().FileManager(
    settings => {
        settings.CustomFileInfoDisplayText = (sender, e) => {
            // your code
        };
    }
).BindToFileSystemProvider(Model).GetHtml() 

Set the AllowCustomizeFolderDisplayText property to true to raise the DetailsViewCustomColumnDisplayText event for folders.

See Also