badge.positionString(default: 'edge')
Specifies position of the badge relative to the edge of the button. Valid placemnt options are: inline, edge, inside, outside.
Note: position configuration, other than inline, requires the badge to be aligned. See badge.align for more details.
Example
<button id="button">Button</button>
<script>
$("#button").kendoButton({
badge: {
text: "8",
position: "inside",
align: "bottom end"
}
});
</script>
In this article