Back to Devexpress

GridToolbarSettingsAdaptivity.Enabled Property

aspnet-devexpress-dot-web-dot-gridtoolbarsettingsadaptivity.md

latest2.2 KB
Original Source

GridToolbarSettingsAdaptivity.Enabled Property

Specifies whether an adaptive behavior is enabled for the toolbar.

Namespace : DevExpress.Web

Assembly : DevExpress.Web.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
[DefaultValue(false)]
public bool Enabled { get; set; }
vb
<DefaultValue(False)>
Public Property Enabled As Boolean

Property Value

TypeDefaultDescription
Booleanfalse

true, to enable the adaptive behavior; otherwise, false

|

Property Paths

You can access this nested property as listed below:

Object TypePath to Enabled
GridToolbar

.SettingsAdaptivity .Enabled

|

Remarks

When the Enabled property is set to true, the toolbar can automatically resize or hide its items when the browser window is resized.

aspx
<dx:ASPxGridView runat="server" ID="Grid" ...>
    <Toolbars>
        <dx:GridViewToolbar>
            <SettingsAdaptivity Enabled="true" EnableCollapseToSideMenu="true" .../>
            <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

GridToolbarSettingsAdaptivity Class

GridToolbarSettingsAdaptivity Members

DevExpress.Web Namespace