items.imageUrl String

If set, the ToolBar will render an image with the specified URL in the button.

Example

<div id="toolbar"></div>

<script>
    var baseUrl = "https://demos.telerik.com/kendo-ui/content/shared/icons";
    $("#toolbar").kendoToolBar({
      items: [
          { type: "button", text: "foo", imageUrl: "/sports/snowboarding.png" },
          { type: "button", text: "bar", imageUrl: "/sports/snowboarding.png" }
      ]
    });
</script>
In this article