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

GridToolbarSettingsAdaptivity.EnableCollapseToSideMenu Property

Specifies whether the toolbar should be collapsed to the side menu when the browser window width is changed.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(false)]
public bool EnableCollapseToSideMenu { get; set; }

Property Value

Type Default Description
Boolean **false**

true, to collapse the toolbar to the side menu; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to EnableCollapseToSideMenu
ASP.NET Controls and MVC Extensions TreeListToolbar
.SettingsAdaptivity .EnableCollapseToSideMenu
CardViewToolbar
.SettingsAdaptivity .EnableCollapseToSideMenu
GridToolbar
.SettingsAdaptivity .EnableCollapseToSideMenu
GridViewToolbar
.SettingsAdaptivity .EnableCollapseToSideMenu
VerticalGridToolbar
.SettingsAdaptivity .EnableCollapseToSideMenu
ASP.NET MVC Extensions MVCxCardViewToolbar
.SettingsAdaptivity .EnableCollapseToSideMenu
MVCxGridViewToolbar
.SettingsAdaptivity .EnableCollapseToSideMenu
MVCxTreeListToolbar
.SettingsAdaptivity .EnableCollapseToSideMenu
MVCxVerticalGridToolbar
.SettingsAdaptivity .EnableCollapseToSideMenu

Remarks

Use the CollapseToSideMenuAtWindowInnerWidth property to specify the maximum browser window inner width when the toolbar collapses its items to the side menu.

<dx:ASPxGridView runat="server" ID="Grid" ...>
    <Toolbars>
        <dx:GridViewToolbar>
            <SettingsAdaptivity Enabled="true" EnableCollapseToSideMenu="true" 
            CollapseToSideMenuAtWindowInnerWidth="600" />
            <Items>
                <dx:GridViewToolbarItem Command="New" />
                <dx:GridViewToolbarItem Command="Edit" />
                ...
            </Items>
        </dx:GridViewToolbarItem>
        ...
    </Toolbars>
    <Columns>
    ...
    </Columns>    
</dx:ASPxGridView>

Concept

Toolbars

Online Demo

ASPxGridView - Toolbar

See Also