The DevExpress ASP.NET File Manager control is getting three new features that help you deliver a great file management experience for your end-users in the current v14.2 release:
- Custom Columns
- Custom Toolbar and Buttons
- Context Menu
Custom Columns
To add a custom column, use the FileManagerDetailsCustomColumn object in the File Manager’s columns collection using the new Designer.
protected void FileManager_DetailsViewCustomColumnDisplayText(object source, FileManagerDetailsViewCustomColumnDisplayTextEventArgs e) { long fileLenghtInKiloBytes = e.File.Length / 1024; e.DisplayText = string.Format("File path: '{0}', File size: {1} KB", e.File.RelativeName, fileLenghtInKiloBytes); }
Custom Toolbar and Buttons



Context Menu




ASP.NET & MVC
Your Next Great .NET App Starts Here
Year after year, .NET developers such as yourself consistently vote DevExpress products #1.
Experience the DevExpress difference for yourself and download a free 30-day trial of all our products today: DevExpress.com/trial (free support is included during your evaluation).