Skip to main content

BootstrapFileManagerSettingsToolbar.Items Property

Gets the collection of toolbar items.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v23.2.dll

NuGet Package: DevExpress.Web.Bootstrap

Declaration

[PersistenceMode(PersistenceMode.InnerProperty)]
public BootstrapFileManagerToolbarItemCollection Items { get; }

Property Value

Type Description
DevExpress.Web.Bootstrap.BootstrapFileManagerToolbarItemCollection

The collection of toolbar items.

Property Paths

You can access this nested property as listed below:

Object Type Path to Items
BootstrapFileManager
.SettingsToolbar .Items

Remarks

FileManager - Custom Toolbar

Run Demo: Custom Toolbar

<dx:BootstrapFileManager runat="server" ID="FileManager1" >
    <SettingsToolbar>
        <Items>
            <dx:BootstrapFileManagerToolbarCustomDropDownButton>
                <Items>
                    <dx:BootstrapFileManagerToolbarCustomButton Text="Default User" CommandName="DefaultUser" />
                    <dx:BootstrapFileManagerToolbarCustomButton Text="Document Manager" CommandName="DocumentManager" />
                    ...
                </Items>
            </dx:BootstrapFileManagerToolbarCustomDropDownButton>
        </Items>
    </SettingsToolbar>
</dx:BootstrapFileManager>
See Also