FileManagerSettings.DetailsViewCustomColumnDisplayText Property
In This Article
Allows you to specify the display text of a custom column cell.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.2.dll
NuGet Package: DevExpress.Web.Mvc5
#Declaration
public FileManagerDetailsViewCustomColumnDisplayTextEventHandler DetailsViewCustomColumnDisplayText { get; set; }
#Property Value
Type | Description |
---|---|
File |
A File |
#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