RadTabStrip for ASP.NET

The skin does not apply Send comments on this topic.
Trouble shooting > The skin does not apply

Glossary Item Box

Symptoms

The tabstrip visual settings do not apply:

tabstrip with no skin

Solution

Check for the following

  1. Have you correctly set the Skin property? Keep in mind that Telerik RadTabStrip skins are case-sensitive. If you have set the Skin property to "None" no skin will be automatically applied.
  2. Verify that the folder of the skin exists. All skins by default are located in ~/RadControls/Tabstrip/Skins.
  3. Setting the SkinsPath property to invalid location would also cause such a problem.
  4. Verify the existence of the "styles.css" file within your skin folder e.g. ~/RadControls/Tabstrip/Skins/MySkin/styles.css
  5. Check if the CSS rules from the skin are correctly prefixed with .RadTabStrip_[SkinName] e.g .RadTabStrip_MySkin
  6. If you have not set the Skin property and use ASP.NET 2 check if the web resource handler is properly configured. More info is available here.
  7. Check the doctype of the page. If you are using a case sensitive doctype, make sure that the casing of the skin value and the css styles is the same. For example, if you set Skin=TelerikCom and your css classes are actually RadTabstrip_telerikCom, for case-sensitive doctypes the skin will not apply. It will, however, apply correctly in quirks mode.
    According to HTML 4.0, the values of CLASS and ID attributes are case-sensitive. For more information see this msdn article.