I have a tab control with three tabs on it, and I want to disable / enable the various tabs using client-side JavaScript.
I've found the setDisabled() and setEnabled() methods in the help file, but can't get them to work, as they don't appear to use exactly the same syntax as the setSelectedIndex() method. I've tried to disable the second tab using various permutations e.g.
Code: JavaScript
var tabStrip = eo_GetObject('<%=MyTab.ClientID%>');
tabStrip.setDisabled(1); // doesn't work
tabStrip.getItemsByIndex(1).setDisabled(true); // doesn't work
I looked in the sample code, but there were no examples of this in the TabStrip and MultiPage section...