New to Kendo UI for jQuery? Start a free 30-day trial
Icon ButtonGroup
Updated over 6 months ago
The ButtonGroup can accommodate an icon and in this way to enhance the meaning of the text content.
You can configure the icons by using the icon and imageUrl properties of the ButtonGroup. To set a particular Button instance, use only one of them.
html
<div id="buttongroup">
</div>
<script>
$("#buttongroup").kendoButtonGroup({
items: [
{ icon: "pencil" },
{ imageUrl: "/images/myEditIcon.gif" }
]
});
</script>