toolbar.items.commandString

Specifies the command of the button.

Example

<div id="taskBoard"></div>
<script>
$("#taskBoard").kendoTaskBoard({
    toolbar: {
        items: [
            { command: "CustomCommand", text: "Custom Command", icon: "gear" },
            { command: "AddCard", text: "Add Card", icon: "plus" }
        ]
    },
    dataSource: [
        { id: 1, title: "Task 1", status: "todo" }
    ],
    columns: [
        { text: "To Do", status: "todo" }
    ]
});
</script>
In this article
toolbar.items.command
Not finding the help you need?
Contact Support