I am trying to disable certain tabs server side. I am looping through all tabs and setting enabled to false. It does not affect the tabs. I can disable the entire tabstrip, which works fine. I am running this in page load
Any help is greatly appreciated.
| RadTabStrip tabs = (RadTabStrip)Master.FindControl("tabstrip"); |
| foreach (RadTab tab in tabs.GetAllTabs()) |
| { |
| if (tab.Index > 0) |
| tab.Enabled = false; |
| } |
Any help is greatly appreciated.