New to Telerik UI for ASP.NET CoreStart a free 30-day trial

Events

The SplitButton exposes a Click() event that you can handle.

For a complete example on basic SplitButton events, refer to the demo on using the events of the SplitButton.

Razor
    @(Html.Kendo().SplitButton()
         .Name("sampleSplitButton")
         .Text("Sample Split Button")
         .Events(ev => ev.Click("onClick"))
         .Items(items =>
          {
              items.Add().Id("item1").Text("Action 1");
              items.Add().Id("item2").Text("Action 2");
          }
         )
)

Next Steps

See Also

In this article
Next StepsSee Also
Not finding the help you need?
Contact Support