New to Kendo UI for jQueryStart a free 30-day trial

Enable

methods

Disables (false) or enables (true) a tab(s) of a TabStrip.

Parameters:elementString|Element|jQuery

The target tab(s), specified as a selector, to be enabled (true) or disabled (false).

Returns:kendo.ui.TabStrip

Returns the TabStrip object to support chaining.

<div id="tabstrip">
    <ul>
        <li>Tab 1</li>
        <li>Tab 2</li>
    </ul>
    <div>Content 1</div>
    <div>Content 2</div>
</div>

<script>
    var tabStrip = $("#tabstrip").kendoTabStrip().data("kendoTabStrip");
    tabStrip.enable(tabStrip.tabGroup.children().eq(0), false);
    tabStrip.enable(tabStrip.tabGroup.children().eq(0), true);
</script>
Not finding the help you need?
Contact Support