I'm trying to set up the Scheduler to use a custom skin. For now, I'm just copying the Office2007 skin into my project and trying to get it to look correct.
I've copied the Scheduler.Office2007.css file into my project directory and included it in my project. I also copied the 'Scheduler' folder with all the .gif and .png files and included it in my project.
I registered the skin in my .aspx file, like so:
<head runat="server">
<title>My Calendar</title>
<link href="Scheduler.Office2007.css" rel="stylesheet" type="text/css" />
</head>
I set EnabledEmbeddedSkins to false, like so:
<telerik:RadScheduler ID="RadScheduler1" runat="server" width="100%" Height = "600px"
HoursPanelTimeFormat="htt" Skin="Office2007" StartInsertingInAdvancedForm="True"
ValidationGroup="RadScheduler1"
EnableEmbeddedBaseStylesheet="False" EnableEmbeddedSkins="false">
<Localization AdvancedAllDayEvent="All day"></Localization>
<AdvancedForm DateFormat="M/d/yyyy" TimeFormat="h:mm tt"></AdvancedForm>
</telerik:RadScheduler>
When I run it, it's finding the images and doing something with the .css, but very ugly:
Screen Shot
I've copied the Scheduler.Office2007.css file into my project directory and included it in my project. I also copied the 'Scheduler' folder with all the .gif and .png files and included it in my project.
I registered the skin in my .aspx file, like so:
<head runat="server">
<title>My Calendar</title>
<link href="Scheduler.Office2007.css" rel="stylesheet" type="text/css" />
</head>
I set EnabledEmbeddedSkins to false, like so:
<telerik:RadScheduler ID="RadScheduler1" runat="server" width="100%" Height = "600px"
HoursPanelTimeFormat="htt" Skin="Office2007" StartInsertingInAdvancedForm="True"
ValidationGroup="RadScheduler1"
EnableEmbeddedBaseStylesheet="False" EnableEmbeddedSkins="false">
<Localization AdvancedAllDayEvent="All day"></Localization>
<AdvancedForm DateFormat="M/d/yyyy" TimeFormat="h:mm tt"></AdvancedForm>
</telerik:RadScheduler>
When I run it, it's finding the images and doing something with the .css, but very ugly:
Screen Shot