Skip to main content

BootstrapFileManagerToolbarCustomDropDownButton Class

A custom drop-down toolbar item.

Namespace: DevExpress.Web.Bootstrap

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

NuGet Package: DevExpress.Web.Bootstrap

Declaration

public class BootstrapFileManagerToolbarCustomDropDownButton :
    FileManagerToolbarCustomDropDownButton,
    IBootstrapFileManagerToolbarItem

Remarks

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