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

FileManagerSettingsToolbar.ShowPath Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
Boolean **true**

true, if the path panel is visible, otherwise, false.

Property Paths

You can access this nested property as listed below:

Remarks

Use the ShowPath property to display/hide the path panel. Use the FileManagerStyles.ToolbarItem property to customize the panel’s appearance.

Concept

Example

Web Forms (declaratively):

<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