toolbar.items.nameString
Specifies the name of the button.
Example
<div id="taskBoard"></div>
<script>
$("#taskBoard").kendoTaskBoard({
toolbar: {
items: [
{ name: "addCard", text: "Add Card", icon: "plus" },
{ name: "customButton", text: "Custom", icon: "gear" }
]
},
dataSource: [
{ id: 1, title: "Task 1", status: "todo" }
],
columns: [
{ text: "To Do", status: "todo" }
]
});
</script>
In this article