Badges
The Telerik UI for ASP.NET MVC ButtonGroup provides options for adding badges to its Buttons.
To add or update a badge, use the Badge()
configuration method.
@(Html.Kendo().ButtonGroup()
.Name("player")
.Items(t =>
{
t.Add().Text("One").Badge("1");
})
)