New to Kendo UI for jQuery? Download 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.

<div id="buttongroup">
</div>

<script>
    $("#buttongroup").kendoButtonGroup({
        items: [
            { text: "Option1", badge: "8" },
            { text: "Option2" }
        ]
    });
</script>