Using 2008.Q3 skins with 2009.Q1 Release : RadUpload
The official Q3 skins for RadUpload are attached to this post (Q3-Skins-RadUpload.zip).
The same instructions can also be applied for custom skins (since the RadUpload did not change its CSS class names).
There are two ways of using the attached skins (SkinName is the skin that you want to use):
ASP.NET Themes
This method is useful if you need to use the skin for all controls of a specific type in the whole web application.
You need to:
1. change the <pages> declaration in your web.config to <pages
theme="SkinName"> e.g.
<pages theme="Gray">
2. add the following lines to the <appSettings> section of your web.config:
<add key="Telerik.EnableEmbeddedBaseStylesheet" value="false" />
<add key="Telerik.EnableEmbeddedSkins" value="false" />
<add key="Telerik.Skin" value="SkinName"/>
e.g.
<add key="Telerik.Skin" value="Gray"/>
3. create an ASP.NET Theme, named SkinName and add the following all files and folders from the Q3-Skins-RadUpload archive:
Skins/ Upload.css
Skins/SkinName/*
e.g.
Skins/Upload.css
Skins/Gray/Upload.Gray.css
Skins/Gray/Upload/*.*
A sample project, demonstrating this method, is attached to this post (Q3-Skins-ASPNETThemes-RadUpload.zip).
Direct skin registration
This method is useful if you have fewer instances of RadUpload.
You need to:
1. set the Skin property accordingly
2. set the EnableEmbeddedSkins and the EnableEmbeddedBaseStylesheet properties to false
3. register the skin file using the following CSS:
<link rel="stylesheet" type="text/css" href="~/Skins/ Upload.css" runat="server " />
<link rel="stylesheet"
type="text/css" href="~/Skins/SkinName/Upload.SkinName.css" runat="server" />
e.g.
<link rel="stylesheet" type="text/css" href="~/Skins/ Upload.css" runat="server" />
<link rel="stylesheet" type="text/css" href="~/Skins/Gray/Upload. Gray.css" runat="server"/>
A sample project, demonstrating this method, is attached to this post (Q3-Skins-DirectSkinRegistration-RadUpload.zip).
Using 2008.Q3 skins with 2009.Q1 Release : RadTreeView
The official Q3 skins for RadTreeView are attached to this post (Q3-Skins-RadTreeView.zip).
The same instructions can also be applied for custom skins (since the RadTreeView did not change its CSS class names).
There are two ways of using the attached skins (SkinName is the skin that you want to use):
ASP.NET Themes
This method is useful if you need to use the skin for all controls of a specific type in the whole web application.
You need to:
1. change the <pages> declaration in your web.config to <pages
theme="SkinName"> e.g.
<pages theme="Gray">
2. add the following lines to the <appSettings> section of your web.config:
<add key="Telerik.EnableEmbeddedBaseStylesheet" value="false" />
<add key="Telerik.EnableEmbeddedSkins" value="false" />
<add key="Telerik.Skin" value="SkinName"/>
e.g.
<add key="Telerik.Skin" value="Gray"/>
3. create an ASP.NET Theme, named SkinName and add the following all files and folders from the Q3-Skins-RadTreeView archive:
Skins/ TreeView.css
Skins/SkinName/*
e.g.
Skins/TreeView.css
Skins/Gray/TreeView.Gray.css
Skins/Gray/TreeView/*.*
A sample project, demonstrating this method, is attached to this post (Q3-Skins-ASPNETThemes-RadTreeView.zip).
Direct skin registration
This method is useful if you have fewer instances of RadTreeView.
You need to:
1. set the Skin property accordingly
2. set the EnableEmbeddedSkins and the EnableEmbeddedBaseStylesheet properties to false
3. register the skin file using the following CSS:
<link rel="stylesheet" type="text/css" href="~/Skins/ TreeView.css" runat="server " />
<link rel="stylesheet"
type="text/css" href="~/Skins/SkinName/TreeView.SkinName.css" runat="server" />
e.g.
<link rel="stylesheet" type="text/css" href="~/Skins/ TreeView.css" runat="server" />
<link rel="stylesheet" type="text/css" href="~/Skins/Gray/TreeView. Gray.css" runat="server"/>
A sample project, demonstrating this method, is attached to this post (Q3-Skins-DirectSkinRegistration-RadTreeView.zip).
Using 2008.Q3 skins with 2009.Q1 Release : RadToolBar
The official Q3 skins for RadToolBar are attached to this post (Q3-Skins-RadToolBar.zip).
The same instructions can also be applied for custom skins (since the RadToolBar did not change its CSS class names).
There are two ways of using the attached skins (SkinName is the skin that you want to use):
ASP.NET Themes
This method is useful if you need to use the skin for all controls of a specific type in the whole web application.
You need to:
1. change the <pages> declaration in your web.config to <pages
theme="SkinName"> e.g.
<pages theme="Gray">
2. add the following lines to the <appSettings> section of your web.config:
<add key="Telerik.EnableEmbeddedBaseStylesheet" value="false" />
<add key="Telerik.EnableEmbeddedSkins" value="false" />
<add key="Telerik.Skin" value="SkinName"/>
e.g.
<add key="Telerik.Skin" value="Gray"/>
3. create an ASP.NET Theme, named SkinName and add the following all files and folders from the Q3-Skins-RadToolBar archive:
Skins/ ToolBar.css
Skins/SkinName/*
e.g.
Skins/ToolBar.css
Skins/Gray/ToolBar.Gray.css
Skins/Gray/ToolBar/*.*
A sample project, demonstrating this method, is attached to this post (Q3-Skins-ASPNETThemes-RadToolBar.zip).
Direct skin registration
This method is useful if you have fewer instances of RadToolBar.
You need to:
1. set the Skin property accordingly
2. set the EnableEmbeddedSkins and the EnableEmbeddedBaseStylesheet properties to false
3. register the skin file using the following CSS:
<link rel="stylesheet" type="text/css" href="~/Skins/ ToolBar.css" runat="server " />
<link rel="stylesheet"
type="text/css" href="~/Skins/SkinName/ToolBar.SkinName.css" runat="server" />
e.g.
<link rel="stylesheet" type="text/css" href="~/Skins/ ToolBar.css" runat="server" />
<link rel="stylesheet" type="text/css" href="~/Skins/Gray/ToolBar. Gray.css" runat="server"/>
A sample project, demonstrating this method, is attached to this post (Q3-Skins-DirectSkinRegistration-RadToolBar.zip).
Using 2008.Q3 skins with 2009.Q1 Release : RadTabStrip
The official Q3 skins for RadTabStrip are attached to this post (Q3-Skins-RadTabStrip.zip).
The same instructions can also be applied for custom skins (since the RadTabStrip did not change its CSS class names).
There are two ways of using the attached skins (SkinName is the skin that you want to use):
ASP.NET Themes
This method is useful if you need to use the skin for all controls of a specific type in the whole web application.
You need to:
1. change the <pages> declaration in your web.config to <pages
theme="SkinName"> e.g.
<pages theme="Gray">
2. add the following lines to the <appSettings> section of your web.config:
<add key="Telerik.EnableEmbeddedBaseStylesheet" value="false" />
<add key="Telerik.EnableEmbeddedSkins" value="false" />
<add key="Telerik.Skin" value="SkinName"/>
e.g.
<add key="Telerik.Skin" value="Gray"/>
3. create an ASP.NET Theme, named SkinName and add the following all files and folders from the Q3-Skins-RadTabStrip archive:
Skins/ TabStrip.css
Skins/SkinName/*
e.g.
Skins/TabStrip.css
Skins/Gray/TabStrip.Gray.css
Skins/Gray/TabStrip/*.*
A sample project, demonstrating this method, is attached to this post (Q3-Skins-ASPNETThemes-RadTabStrip.zip).
Direct skin registration
This method is useful if you have fewer instances of RadTabStrip.
You need to:
1. set the Skin property accordingly
2. set the EnableEmbeddedSkins and the EnableEmbeddedBaseStylesheet properties to false
3. register the skin file using the following CSS:
<link rel="stylesheet" type="text/css" href="~/Skins/ TabStrip.css" runat="server " />
<link rel="stylesheet"
type="text/css" href="~/Skins/SkinName/TabStrip.SkinName.css" runat="server" />
e.g.
<link rel="stylesheet" type="text/css" href="~/Skins/ TabStrip.css" runat="server" />
<link rel="stylesheet" type="text/css" href="~/Skins/Gray/TabStrip. Gray.css" runat="server"/>
A sample project, demonstrating this method, is attached to this post (Q3-Skins-DirectSkinRegistration-RadTabStrip.zip).
Using 2008.Q3 skins with 2009.Q1 Release : RadScheduler
The official Q3 skins for RadScheduler are attached to this post (Q3-Skins-RadScheduler.zip).
The same instructions can also be applied for custom skins (since the RadScheduler did not change its CSS class names).
There are two ways of using the attached skins (SkinName is the skin that you want to use):
ASP.NET Themes
This method is useful if you need to use the skin for all controls of a specific type in the whole web application.
You need to:
1. change the <pages> declaration in your web.config to <pages
theme="SkinName"> e.g.
<pages theme="Gray">
2. add the following lines to the <appSettings> section of your web.config:
<add key="Telerik.EnableEmbeddedBaseStylesheet" value="false" />
<add key="Telerik.EnableEmbeddedSkins" value="false" />
<add key="Telerik.Skin" value="SkinName"/>
e.g.
<add key="Telerik.Skin" value="Gray"/>
3. create an ASP.NET Theme, named SkinName and add the following all files and folders from the Q3-Skins-RadScheduler archive:
Skins/ Scheduler.css
Skins/SkinName/*
e.g.
Skins/Scheduler.css
Skins/Gray/Scheduler.Gray.css
Skins/Gray/Scheduler/*.*
A sample project, demonstrating this method, is attached to this post (Q3-Skins-ASPNETThemes-RadScheduler.zip).
Direct skin registration
This method is useful if you have fewer instances of RadScheduler.
You need to:
1. set the Skin property accordingly
2. set the EnableEmbeddedSkins and the EnableEmbeddedBaseStylesheet properties to false
3. register the skin file using the following CSS:
<link rel="stylesheet" type="text/css" href="~/Skins/ Scheduler.css" runat="server " />
<link rel="stylesheet"
type="text/css" href="~/Skins/SkinName/Scheduler.SkinName.css" runat="server" />
e.g.
<link rel="stylesheet" type="text/css" href="~/Skins/ Scheduler.css" runat="server" />
<link rel="stylesheet" type="text/css" href="~/Skins/Gray/Scheduler. Gray.css" runat="server"/>
A sample project, demonstrating this method, is attached to this post (Q3-Skins-DirectSkinRegistration-RadScheduler.zip).
Using 2008.Q3 skins with 2009.Q1 Release : RadPanelBar
The official Q3 skins for RadPanelBar are attached to this post (Q3-Skins-RadPanelBar.zip).
The same instructions can also be applied for custom skins (since the RadPanelBar did not change its CSS class names).
There are two ways of using the attached skins (SkinName is the skin that you want to use):
ASP.NET Themes
This method is useful if you need to use the skin for all controls of a specific type in the whole web application.
You need to:
1. change the <pages> declaration in your web.config to <pages
theme="SkinName"> e.g.
<pages theme="Gray">
2. add the following lines to the <appSettings> section of your web.config:
<add key="Telerik.EnableEmbeddedBaseStylesheet" value="false" />
<add key="Telerik.EnableEmbeddedSkins" value="false" />
<add key="Telerik.Skin" value="SkinName"/>
e.g.
<add key="Telerik.Skin" value="Gray"/>
3. create an ASP.NET Theme, named SkinName and add the following all files and folders from the Q3-Skins-RadPanelBar archive:
Skins/ PanelBar.css
Skins/SkinName/*
e.g.
Skins/PanelBar.css
Skins/Gray/PanelBar.Gray.css
Skins/Gray/PanelBar/*.*
A sample project, demonstrating this method, is attached to this post (Q3-Skins-ASPNETThemes-RadPanelBar.zip).
Direct skin registration
This method is useful if you have fewer instances of RadPanelBar.
You need to:
1. set the Skin property accordingly
2. set the EnableEmbeddedSkins and the EnableEmbeddedBaseStylesheet properties to false
3. register the skin file using the following CSS:
<link rel="stylesheet" type="text/css" href="~/Skins/ PanelBar.css" runat="server " />
<link rel="stylesheet"
type="text/css" href="~/Skins/SkinName/PanelBar.SkinName.css" runat="server" />
e.g.
<link rel="stylesheet" type="text/css" href="~/Skins/ PanelBar.css" runat="server" />
<link rel="stylesheet" type="text/css" href="~/Skins/Gray/PanelBar. Gray.css" runat="server"/>
A sample project, demonstrating this method, is attached to this post (Q3-Skins-DirectSkinRegistration-RadPanelBar.zip).
Using 2008.Q3 skins with 2009.Q1 Release : RadMenu
The official Q3 skins for RadMenu are attached to this post (Q3-Skins-RadMenu.zip).
The same instructions can also be applied for custom skins (since the RadMenu did not change its CSS class names).
There are two ways of using the attached skins (SkinName is the skin that you want to use):
ASP.NET Themes
This method is useful if you need to use the skin for all controls of a specific type in the whole web application.
You need to:
1. change the <pages> declaration in your web.config to <pages
theme="SkinName"> e.g.
<pages theme="Gray">
2. add the following lines to the <appSettings> section of your web.config:
<add key="Telerik.EnableEmbeddedBaseStylesheet" value="false" />
<add key="Telerik.EnableEmbeddedSkins" value="false" />
<add key="Telerik.Skin" value="SkinName"/>
e.g.
<add key="Telerik.Skin" value="Gray"/>
3. create an ASP.NET Theme, named SkinName and add the following all files and folders from the Q3-Skins-RadMenu archive:
Skins/ Menu.css
Skins/SkinName/*
e.g.
Skins/Menu.css
Skins/Gray/Menu.Gray.css
Skins/Gray/Menu/*.*
A sample project, demonstrating this method, is attached to this post (Q3-Skins-ASPNETThemes-RadMenu.zip).
Direct skin registration
This method is useful if you have fewer instances of RadMenu.
You need to:
1. set the Skin property accordingly
2. set the EnableEmbeddedSkins and the EnableEmbeddedBaseStylesheet properties to false
3. register the skin file using the following CSS:
<link rel="stylesheet" type="text/css" href="~/Skins/ Menu.css" runat="server " />
<link rel="stylesheet"
type="text/css" href="~/Skins/SkinName/Menu.SkinName.css" runat="server" />
e.g.
<link rel="stylesheet" type="text/css" href="~/Skins/ Menu.css" runat="server" />
<link rel="stylesheet" type="text/css" href="~/Skins/Gray/Menu. Gray.css" runat="server"/>
A sample project, demonstrating this method, is attached to this post (Q3-Skins-DirectSkinRegistration-RadMenu.zip).