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

MVCxFileManagerFileListDetailsViewSettings Class

Contains settings that relate to the file list‘s details view functionality.

Namespace: DevExpress.Web.Mvc

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

Declaration

public class MVCxFileManagerFileListDetailsViewSettings :
    FileManagerFileListDetailsViewSettings

The following members return MVCxFileManagerFileListDetailsViewSettings objects:

Remarks

An object of the MVCxFileManagerFileListDetailsViewSettings type can be accessed by the FileManagerSettingsFileList.DetailsViewSettings property.

@Html.DevExpress().FileManager( settings => {
    settings.Name = "fileManager";
    settings.SettingsFileList.View = FileListView.Details;
    settings.SettingsFileList.DetailsViewSettings.AllowColumnResize = true;
    settings.SettingsFileList.DetailsViewSettings.AllowColumnDragDrop = true;
    settings.SettingsFileList.DetailsViewSettings.AllowColumnSort = true;
    settings.SettingsFileList.DetailsViewSettings.ShowHeaderFilterButton = false
    ...
}).BindToFolder(Model).GetHtml()

Online Demo

See Also