New to Telerik UI for ASP.NET Core? Download free 30-day trial

Appearance

In this article, you will find information about the rendering and styling options of the Telerik UI for ASP.NET Core SplitButton.

For general information regarding the rendering, visit the Components Rendering article.

For a complete example, refer to the Appearance Demo of the SplitButton.

Options

The SplitButton provides the following methods for styling:

  • Size()—configures the overall size of the component.
  • ThemeColor()—configures what color will be applied to the component.
  • FillMode()—defines how the color is applied to the component.
  • Rounded()—determines the border radius of the component.

Size

To control the size of the SplitButton, configure the Size() method with any of the following values:

  • Small
  • Medium
  • Large
  • None

The default Size value is Medium.

    @(Html.Kendo().SplitButton()
        .Name("splitButton")
        .Icon("clipboard")
        .Size(ComponentSize.Medium)
        .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");
        }
    )
    <kendo-splitbutton name="splitButton" text="Paste" icon="clipboard" size="ComponentSize.Medium">
        <splitbutton-items>
            <item id="keep-text" text="Keep Text Only" icon="clipboard-text"></item>
            <item id="paste-html" text="Paste as HTML" icon="clipboard-code"></item>
            <item id="paste-markdown" text="Paste Markdown" icon="clipboard-markdown"></item>
        </splitbutton-items>
    </kendo-splitbutton>

FillMode

To manipulate the fill mode of the SplitButton, configure the FillMode() method with any of the following values:

  • Solid
  • Outline
  • Flat
  • None

The default FillMode value is Solid.

    @(Html.Kendo().SplitButton()
        .Name("splitButton")
        .Icon("clipboard")
        .FillMode(FillMode.Solid)
        .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");
        }
    )
    <kendo-splitbutton name="splitButton" text="Paste" icon="clipboard" fill-mode="FillMode.Solid">
        <splitbutton-items>
            <item id="keep-text" text="Keep Text Only" icon="clipboard-text"></item>
            <item id="paste-html" text="Paste as HTML" icon="clipboard-code"></item>
            <item id="paste-markdown" text="Paste Markdown" icon="clipboard-markdown"></item>
        </splitbutton-items>
    </kendo-splitbutton>

ThemeColor

To specify the theme color of the SplitButton, configure the ThemeColor() method with any of the following values:

  • Base
  • Primary
  • Secondary
  • Tertiary
  • Info
  • Success
  • Warning
  • Error
  • Dark
  • Light
  • Inverse

The default ThemeColor value is Base.

    @(Html.Kendo().SplitButton()
        .Name("splitButton")
        .Icon("clipboard")
        .ThemeColor(ThemeColor.Base)
        .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");
        }
    )
    <kendo-splitbutton name="splitButton" text="Paste" icon="clipboard" theme-color="ThemeColor.Base">
        <splitbutton-items>
            <item id="keep-text" text="Keep Text Only" icon="clipboard-text"></item>
            <item id="paste-html" text="Paste as HTML" icon="clipboard-code"></item>
            <item id="paste-markdown" text="Paste Markdown" icon="clipboard-markdown"></item>
        </splitbutton-items>
    </kendo-splitbutton>

Rounded

To set the border radius of the SplitButton, configure the Rounded() method with any of the following values:

  • Small
  • Medium
  • Large
  • Full
  • None

The default Rounded value is Medium.

    @(Html.Kendo().SplitButton()
        .Name("splitButton")
        .Icon("clipboard")
        .Rounded(Rounded.Medium)
        .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");
        }
    )
    <kendo-splitbutton name="splitButton" text="Paste" icon="clipboard" rounded="Rounded.Medium">
        <splitbutton-items>
            <item id="keep-text" text="Keep Text Only" icon="clipboard-text"></item>
            <item id="paste-html" text="Paste as HTML" icon="clipboard-code"></item>
            <item id="paste-markdown" text="Paste Markdown" icon="clipboard-markdown"></item>
        </splitbutton-items>
    </kendo-splitbutton>

See Also

In this article