Hello!
When I use this code to disable 2nd and 3rd tab in each detailed row I see that only first expanded row has those tabs disabled - and all other rows that I expand are enabled - what am I doing wrong? Thanks for help!
var tabStrip = $("#mytabstrip").kendoTabStrip().data("kendoTabStrip");
tabStrip.disable(tabStrip.tabGroup.children().eq(1));
tabStrip.disable(tabStrip.tabGroup.children().eq(2));
<script type="text/x-kendo-template" id="template"> <div class="tabstrip" id="mytabstrip"> <button id="gridButton">gridButton</button> <ul> <li class="k-state-active" id="AccountsTab"> Счета </li> <li id="AccountInfoTab"> Полная информация по счету: </li> <li id="BillEventsTab"> Просмотр событий по счету: </li> </ul> <div> <div id="account" class="Account"></div> </div> </div> </script>