toolbar.items.iconString
Sets icon for the item. The icon should be one of the existing in the Kendo UI theme sprite.
Example
<div id="taskBoard"></div>
<script>
$("#taskBoard").kendoTaskBoard({
toolbar: {
items: [
{ text: "Add", icon: "plus" },
{ text: "Settings", icon: "gear" },
{ text: "Delete", icon: "trash" },
{ text: "Save", icon: "save" }
]
},
dataSource: [
{ id: 1, title: "Task 1", status: "todo" }
],
columns: [
{ text: "To Do", status: "todo" }
]
});
</script>
In this article