badge.textString|Number(default: '')
The text of the badge. Valid input includes string, number or object with toString method. Default is empty string.
Example
<button id="button">Button</button>
<script>
$("#button").kendoButton({
badge: {
text: "New",
themeColor: "info"
}
});
</script>
In this article