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

Disable

methods

Disables a tab(s) of a TabStrip.

Parameters:elementString|Element|jQuery

The target tab(s), specified as a selector, to be disabled.

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.disable(tabStrip.tabGroup.children().eq(0));
</script>
Not finding the help you need?
Contact Support