Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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

C#
[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.
razor
...
<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