FileManagerSettings.CustomFileInfoDisplayText Property
In This Article
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 |
---|---|
File |
A File |
#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