toolbar.items.togglableBoolean
(default: false)
Specifies if the button is togglable, e.g. has a selected and unselected state.
Example
<div id="taskBoard"></div>
<script>
$("#taskBoard").kendoTaskBoard({
toolbar: {
items: [
{ text: "Toggle View", icon: "eye", togglable: true },
{ text: "Regular Button", icon: "gear", togglable: false }
]
},
dataSource: [
{ id: 1, title: "Task 1", status: "todo" }
],
columns: [
{ text: "To Do", status: "todo" }
]
});
</script>
In this article