dataSource.closableBoolean(default: false)

Specifies whether this specific tab can be closed via a close button. When set to true, the tab includes a close icon that triggers tab removal when clicked. This overrides the global closable setting for this specific tab.

Example

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