Enable Disable all Tabs inside Telerik RadTabStrip






4.91/5 (3 votes)
We will explore the JavaScript code, by which we can easily Enable or Disable all the Tabs inside a Telerik RadTabStrip.
We will explore the JavaScript
code, by which we can easily Enable or Disable all the Tabs inside a Telerik RadTabStrip
.
Read the comments inside the code blocks to know how the code works.
Enable All Tabs
function EnableAllTabs(){
// Get the Tab Strip.
var tabStrip = $find('<%= yourTabStripID.ClientID >');
// Get all the Tabs.
var tabs = tabStrip.get_tabs();
// Now loop through all the Tabs and Enable one by one.
for(var i = 0; i < tabStrip.get_allTabs().length; i++){
tabs.getTab(i).enable();
}
}
Disable All Tabs
function DisableAllTabs(){
// Get the Tab Strip.
var tabStrip = $find('<%= yourTabStripID.ClientID >');
// Get all the Tabs.
var tabs = tabStrip.get_tabs();
// Now loop through all the Tabs and Disable one by one.
for(var i = 0; i < tabStrip.get_allTabs().length; i++){
tabs.getTab(i).disable();
}
}