collapsibleBoolean(default: false)
Specifies whether the TabStrip should be able to collapse completely when clicking an expanded tab.
Example
<div id="tabstrip">
    <ul>
        <li>Tab 1</li>
        <li>Tab 2</li>
    </ul>
    <div>Content 1</div>
    <div>Content 2</div>
</div>
<script>
    $("#tabstrip").kendoTabStrip({
        collapsible: true
    });
</script>In this article