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.
<div id="buttongroup">
</div>
<script>
$("#buttongroup").kendoButtonGroup({
items: [
{ text: "Option1", badge: "8" },
{ text: "Option2" }
]
});
</script>