Skip to main content
Tab

FileManagerSettingsToolbar.ShowFilterBox Property

Gets or sets a value that specifies whether the filter box is displayed.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(true)]
public virtual bool ShowFilterBox { get; set; }

Property Value

Type Default Description
Boolean true

true, if the filter box is visible, otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to ShowFilterBox
ASP.NET MVC Extensions FileManagerSettings
.SettingsToolbar .ShowFilterBox
ASP.NET Web Forms Controls ASPxFileManager
.SettingsToolbar .ShowFilterBox
RichEditDocumentSelectorSettings
.ToolbarSettings .ShowFilterBox
SpreadsheetDocumentSelectorSettings
.ToolbarSettings .ShowFilterBox

Remarks

Use the ShowFilterBox property to manage the filter box’s visibility.

Concept

Example

Web Forms (in markup):

<dx:ASPxFileManager ID="FileManager" runat="server" />
    <SettingsToolbar ShowPath="false" ShowFilterBox="true" />
</dx:ASPxFileManager>

Web Forms (in code):

ASPxFileManager fm = new ASPxFileManager();
...
fm.SettingsToolbar.ShowPath = false;
fm.SettingsToolbar.ShowFilterBox = true;

MVC:

@Html.DevExpress().FileManager( settings => {
    settings.Name = "fileManager";

    settings.SettingsToolbar.ShowPath = false;
    settings.SettingsToolbar.ShowFilterBox = true;
    ...
}).BindToFolder(Model).GetHtml()

Online Demo

See Also