Back to Devexpress

GridToolbarSettingsAdaptivity.EnableCollapseRootItemsToIcons Property

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

latest2.8 KB
Original Source

GridToolbarSettingsAdaptivity.EnableCollapseRootItemsToIcons Property

Specifies whether the toolbar hides its items’ text and displays only icons when the browser window width is changed.

Namespace : DevExpress.Web

Assembly : DevExpress.Web.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

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

Property Value

TypeDefaultDescription
Booleanfalse

true, to hide an item text; otherwise, false.

|

Property Paths

You can access this nested property as listed below:

Object TypePath to EnableCollapseRootItemsToIcons
GridToolbar

.SettingsAdaptivity .EnableCollapseRootItemsToIcons

|

Remarks

Use the CollapseRootItemsToIconsAtWindowInnerWidth property to specify the maximum browser window inner width when the toolbar hides items’ text and displays only icons.

The EnableCollapseRootItemsToIcons property is in effect if the Enabled property is set to true.

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

GridToolbarSettingsAdaptivity Class

GridToolbarSettingsAdaptivity Members

DevExpress.Web Namespace