ButtonGroup ToolBar Command Type
The ButtonGroup consists of multiple button elements that are visually separated in a group.
In the command overflow popup, the ButtonGroup is rendered as a list of commands.
The following example demonstrates how to define a ButtonGroup in the ToolBar component:
@(Html.Kendo().ToolBar()
.Name("ToolBar")
.Items(items =>
{
items.Add().Type(CommandType.ButtonGroup).Id("btnGroup").Buttons(buttons =>
{
buttons.Add().Text("Prev").Icon("caret-alt-left");
buttons.Add().Text("Next").Icon("caret-alt-right");
});
})
)