For some reason I cant get custom skin to work.
I added a link tag to the page pointing to customized skin file.
I set the EnableEmbeddedBaseStylesheet to false.
I set the skin name to Outlook.
But the control continues to use embedded skin. What am I doing wrong?
Thank you for you help.
See sample below:
I added a link tag to the page pointing to customized skin file.
I set the EnableEmbeddedBaseStylesheet to false.
I set the skin name to Outlook.
But the control continues to use embedded skin. What am I doing wrong?
Thank you for you help.
See sample below:
| <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> |
| <%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
| <html xmlns="http://www.w3.org/1999/xhtml"> |
| <head runat="server"> |
| <title>Untitled Page</title> |
| <link rel="stylesheet" type="text/css" href="Skins/Outlook/ComboBox.Outlook.css" /> |
| </head> |
| <body> |
| <form id="form1" runat="server"> |
| <div> |
| <telerik:RadScriptManager ID="RadScriptManager1" runat="server"> |
| </telerik:RadScriptManager> |
| </div> |
| <telerik:RadComboBox ID="RadComboBox1" runat="server" EnableEmbeddedBaseStylesheet="False" |
| RadComboBoxImagePosition="Right" Skin="Outlook"> |
| <Items> |
| <telerik:RadComboBoxItem runat="server" Text="RadComboBoxItem1" /> |
| <telerik:RadComboBoxItem runat="server" Text="RadComboBoxItem2" /> |
| <telerik:RadComboBoxItem runat="server" Text="RadComboBoxItem3" /> |
| </Items> |
| <CollapseAnimation Duration="200" Type="OutQuint" /> |
| <ExpandAnimation Type="OutQuart" /> |
| </telerik:RadComboBox> |
| </form> |
| </body> |
| </html> |