Skip to main content
All docs
V24.2

DxRibbonGroup.CollapseInGlobalGroup Property

Specifies whether to collapse group items into a global drop-down menu.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public bool? CollapseInGlobalGroup { get; set; }

Property Value

Type Description
Nullable<Boolean>

true to collapse group items into a global menu; false to collapse group items into a menu inside the group.

Remarks

When the ribbon width decreases, the component hides group items into a group drop-down menu. Enable the CollapseInGlobalGroup property to collapse group items into a global drop-down menu.

<DxRibbon >
    <DxRibbonApplicationTab Text="File" />
        <DxRibbonTab Text="Home">
            <DxRibbonGroup Text="Clipboard" >...</DxRibbonGroup>
            <DxRibbonGroup Text="Font Settings" CollapseInGlobalGroup="true" >...</DxRibbonGroup>
            <DxRibbonGroup Text="Font Decoration" CollapseInGlobalGroup="true" >...</DxRibbonGroup>
        </DxRibbonTab>
    ...
</DxRibbon>
See Also