Skip to main content
All docs
V24.2

DxRibbonItem.SplitDropDownButton Property

Specifies whether the drop-down button item should be split into two buttons.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public bool SplitDropDownButton { get; set; }

Property Value

Type Description
Boolean

true to split a drop-down item into two buttons; otherwise, false.

Remarks

A ribbon item containing other items displays a drop-down arrow. When a user clicks the item, the ribbon displays a drop-down window and fires the Click event.

Set the SplitDropDownButton property to true to split the item into two areas: the main action button and the drop-down arrow.

  • When a user clicks the main action button, the ribbon fires the Click event.
  • When a user clicks the drop-down button, the ribbon displays drop-down window.
...
<DxRibbonItem Text="Paste"
              IconCssClass="rb-icon rb-icon-paste"
              SplitDropDownButton="true" >
    <DxRibbonItem Text="Copy" />
    <DxRibbonItem Text="Cut" />
</DxRibbonItem>
...

Ribbon item with split button

See Also