ButtonGroup Overview
The ButtonGroup 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 ButtonGroup HtmlHelper for ASP.NET MVC is a server-side wrapper for the Kendo UI ButtonGroup widget.
The ButtonGroup groups a series of buttons together on a single line.
Initializing the ButtonGroup
The following example demonstrates how to initialize the ButtonGroup.
@(Html.Kendo().ButtonGroup()
.Name("select-period")
.Items(t =>
{
t.Add().Text("Month");
t.Add().Text("Quarter");
t.Add().Text("Year");
}))
Functionality and Features
Events
For a complete example on basic ButtonGroup events, refer to the demo on using the events of the ButtonGroup.