New to Kendo UI for jQuery? Start a free 30-day trial
Icon ButtonGroup
Updated on May 21, 2025
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>