toolbar.items.textString
Sets the text of the button.
Example
<div id="taskBoard"></div>
<script>
$("#taskBoard").kendoTaskBoard({
toolbar: {
items: [
{ text: "Add New Card", icon: "plus" },
{ text: "Export Data", icon: "download" },
{ text: "Settings", icon: "gear" }
]
},
dataSource: [
{ id: 1, title: "Task 1", status: "todo" }
],
columns: [
{ text: "To Do", status: "todo" }
]
});
</script>
In this article