FileManagerSettings.DetailsViewCustomColumnDisplayText Property
Allows you to specify the display text of a custom column cell.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.1.dll
NuGet Package: DevExpress.Web.Mvc5
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