toolbar.items.overflowString

Specifies the overflow of the button.

Example

<div id="taskBoard"></div>
<script>
$("#taskBoard").kendoTaskBoard({
    toolbar: {
        items: [
            { text: "Always Visible", overflow: "never" },
            { text: "Can Overflow", overflow: "auto" },
            { text: "Always Hidden", overflow: "always" }
        ]
    },
    dataSource: [
        { id: 1, title: "Task 1", status: "todo" }
    ],
    columns: [
        { text: "To Do", status: "todo" }
    ]
});
</script>
In this article
toolbar.items.overflow
Not finding the help you need?
Contact Support