closableBoolean(default: false)

Specifies whether each tab can be closed via a close button. When enabled, each tab includes a close icon that triggers tab removal on click. This applies to all tabs in the TabStrip. You can configure the closable behavior for individual tabs by setting the closable option in the specific tab item options.

Example

<div id="tabstrip"></div>

<script>
    $("#tabstrip").kendoTabStrip({
        closable: true,
        dataTextField: "text",
        dataContentField: "content",
        dataSource: [
            {
                text: "Tab 1",
                content: "Tab 1 content"
            },
            {
                text: "Tab 2",
                content: "Tab 2 non-closable content",
                closable: false
            },
            {
                text: "Tab 3",
                content: "Tab 3 content"
            }]
    });
</script>
In this article
closable
Not finding the help you need?
Contact Support