imageUrl String
Defines a URL, which will be used for an img
element inside the DropDownButton. The URL can be relative or absolute. In case it is relative, it will be evaluated with relation to the web page URL.
The img
element can be added automatically by the widget, or an existing element can be used, if it has a k-image
CSS class applied.
Example
<button id="dropdownbutton" type="button">Button</button>
<script>
$("#dropdownbutton").kendoDropDownButton({
items:[
{ text: "item 1" },
{ text: "item 2" }
],
imageUrl: "https://demos.telerik.com/kendo-ui/content/web/treeview/edit.png"
});
</script>