FileManagerSettingsToolbar.ShowPath Property
Gets or sets a value that specifies whether the path box is displayed.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Default | Description |
---|---|---|
Boolean | true |
|
Property Paths
You can access this nested property as listed below:
Library | Object Type | Path to ShowPath |
---|---|---|
ASP.NET Web Forms Controls | ASPxFileManager |
|
RichEditDocumentSelectorSettings |
|
|
SpreadsheetDocumentSelectorSettings |
|
|
ASP.NET MVC Extensions | FileManagerSettings |
|
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