toolbar.items.typeString
Specifies the type of the button.
Example
<div id="taskBoard"></div>
<script>
$("#taskBoard").kendoTaskBoard({
toolbar: {
items: [
{ type: "button", text: "Custom Button", icon: "plus" },
{
type: "splitButton", text: "Split Button", menuButtons: [
{ id: "foo", text: "Foo" },
{ id: "bar", text: "Bar" }
]
}
]
},
dataSource: [
{ id: 1, title: "Task 1", status: "todo" }
],
columns: [
{ text: "To Do", status: "todo" }
]
});
</script>