toolbar.items.optionsString
Specifies the command options of the button.
Example
<div id="taskBoard"></div>
<script>
$("#taskBoard").kendoTaskBoard({
toolbar: {
items: [
{
command: "CustomCommand",
text: "Custom Command",
options: "option1,option2",
icon: "gear"
}
]
},
dataSource: [
{ id: 1, title: "Task 1", status: "todo" }
],
columns: [
{ text: "To Do", status: "todo" }
]
});
</script>
In this article