New to Kendo UI for jQuery? Start a free 30-day trial
Badges
The ButtonGroup provides options for adding badges to its Buttons.
To add or update a badge, use the badge
property or the badge
method.
html
<div id="buttongroup">
</div>
<script>
$("#buttongroup").kendoButtonGroup({
items: [
{ text: "Option1", badge: "8" },
{ text: "Option2" }
]
});
</script>