Skip to main content
Tab

FileManagerSettingsToolbar.ShowPath Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.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:

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

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 (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