ASP.NET MVC SplitButton Overview

Telerik UI for ASP.NET MVC Ninja image

The SplitButton is part of Telerik UI for ASP.NET MVC, a professional grade UI library with 110+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.

The Telerik UI SplitButton HtmlHelper for ASP.NET MVC is a server-side wrapper for the Kendo UI SplitButton widget.

The SplitButton combines the functionality of a button with that of a dropdown element. It allows users to either click on the primary button and run its default behavior, or to open the drop-down popup and choose from a list of additional actions.

Initializing the SplitButton

The following example demonstrates how to define the SplitButton.

    @(Html.Kendo().SplitButton()
        .Name("splitButton")
        .Text("Paste")
        .Icon("clipboard")
        .Items(items => {
            items.Add().Id("keep-text").Text("Keep Text Only").Icon("clipboard-text");
            items.Add().Id("paste-html").Text("Paste as HTML").Icon("clipboard-code");
            items.Add().Id("paste-markdown").Text("Paste Markdown").Icon("clipboard-markdown");
            items.Add().Id("paste-default").Text("Set Default Paste");
        })
    )

Functionality and Features

  • Items—You can configure the SplitButton by adding items to the popup.
  • Appearance—You can control the appearance of the SplitButton by configuring its styling options.
  • Icons—You can enchance the SplitButton's textual content by adding icons.
  • Accessibility—The SplitButton is accessible by screen readers and provides WAI-ARIA, Section 508, WCAG 2.2, and keyboard support.

To learn more about the appearance, anatomy, and accessibility of the SplitButton, visit the Progress Design System documentation—an information portal offering rich component usage guidelines, descriptions of the available style variables, and globalization support details.

Next Steps

See Also

In this article