Skip to main content
A newer version of this page is available. .

FileManagerSettings.DetailsViewCustomColumnDisplayText Property

Allows you to specify the display text of a custom column cell.

Namespace: DevExpress.Web.Mvc

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

Declaration

public FileManagerDetailsViewCustomColumnDisplayTextEventHandler DetailsViewCustomColumnDisplayText { get; set; }

Property Value

Type Description
FileManagerDetailsViewCustomColumnDisplayTextEventHandler

A FileManagerDetailsViewCustomColumnDisplayTextEventHandler delegate method.

Remarks

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

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

See Also