toolbar.items.showIconString
(default: "both")
Specifies where the button icon will be displayed. Possible values are: "toolbar", "overflow" or "both" (default).
Example
<div id="taskBoard"></div>
<script>
$("#taskBoard").kendoTaskBoard({
toolbar: {
items: [
{ text: "Toolbar Only", icon: "plus", showIcon: "toolbar" },
{ text: "Overflow Only", icon: "gear", showIcon: "overflow" },
{ text: "Both Places", icon: "star", showIcon: "both" }
]
},
dataSource: [
{ id: 1, title: "Task 1", status: "todo" }
],
columns: [
{ text: "To Do", status: "todo" }
]
});
</script>
In this article