toolbar.items.imageUrlString
If set, the ToolBar will render an image with the specified URL in the button.
Example
<div id="taskBoard"></div>
<script>
$("#taskBoard").kendoTaskBoard({
toolbar: {
items: [
{ text: "Custom Image", imageUrl: "/images/custom-icon.png" },
{ text: "Another Image", imageUrl: "https://via.placeholder.com/16x16" }
]
},
dataSource: [
{ id: 1, title: "Task 1", status: "todo" }
],
columns: [
{ text: "To Do", status: "todo" }
]
});
</script>
In this article