In my App_Themes folder, I have a file called TelerikCustomSkin.skin. In it, I set the default skins for the Telerik controls. A sample of the contents is as follows:
I am attempting to use the radTreeView on a page similar to your demo page showing examples for each of your controls. So in my .aspx page I have the following:
However, my radTreeView is still being rendered using my custom skin, not the embedded skin. I have removed the custom skin from the TelerikCustomSkin.skin and it works then. However, I would now have to change all the other locations radTreeView is being used and add the skin attribute.
I am using Telerik 3.5 from release 2013_3.1114.
Any help is appreciated.
...
<telerik:RadScheduler runat="server" Skin="Office2007" EnableEmbeddedSkins="true" /><telerik:RadToolBar runat="server" Skin="Custom" EnableEmbeddedSkins="false" height="23px"/><telerik:RadTreeView runat="server" Skin="Custom" EnableEmbeddedSkins="false" Font-Names="Arial" Font-Size="9pt" /><telerik:RadDock runat="server" Skin="Custom" EnableEmbeddedSkins="false" /><telerik:RadTabStrip runat="server" Skin="Custom" EnableEmbeddedSkins="false" />
...I am attempting to use the radTreeView on a page similar to your demo page showing examples for each of your controls. So in my .aspx page I have the following:
<telerik:RadTreeView ID="rtvTree" runat="server" EnableEmbeddedSkins="True" Skin="Silk"> <Nodes> <telerik:RadTreeNode runat="server" Text="Top Ten" Value="pnlTopTen"/> <telerik:RadTreeNode runat="server" Text="Topic Areas" Value="pnlTopicAreas"/> </Nodes></telerik:RadTreeView>However, my radTreeView is still being rendered using my custom skin, not the embedded skin. I have removed the custom skin from the TelerikCustomSkin.skin and it works then. However, I would now have to change all the other locations radTreeView is being used and add the skin attribute.
I am using Telerik 3.5 from release 2013_3.1114.
Any help is appreciated.