badge.alignString
(default: '')
Specifies alignment of the badge relative to button. Valid position options are: top start
, top end
, bottom start
, bottom end
.
badge.align
works in conjunction with badge.position
.
Example
<button id="button">Button</button>
<script>
$("#button").kendoButton({
badge: {
text: "5",
position: "edge",
align: "top end"
}
});
</script>
In this article