Thank you for looking at this. Below is a snippet of code that renders the calendar.
We aren't doing any custom coding, unless you count the styles that we are trying to set for the sizes.
In addition to the code, I've attached a screen shot of what it looks like in IE when first displayed.
Please let me know if I can provide any additional info.
<
style
type
=
"text/css"
>
.rsMonthView .rsWrap
{
height: 50px !important;
}
.rsMonthView .rsDateWrap
{
height: 24px !important;
}
.rsMonthView .rsLastWrap
{
height: 24px !important;
}
.rsMonthView .rsApt
{
height: 48px !important;
}
</
style
>
<
div
style
=
"float:left;width:49%;"
>
<
asp:Panel
ID
=
"pnlCalendar"
runat
=
"server"
>
<
asp:HiddenField
ID
=
"hdnUserID"
runat
=
"server"
/>
<
asp:HiddenField
ID
=
"hdnExamEnrollmentID"
runat
=
"server"
/>
<
asp:HiddenField
ID
=
"hdnProductID"
runat
=
"server"
/>
<
asp:HiddenField
ID
=
"hdnSKUID"
runat
=
"server"
/>
<
telerik:RadScheduler
ID
=
"rsScheduler"
runat
=
"server"
Skin
=
"Windows7"
Width
=
"340px"
height
=
"340px"
DataDescriptionField
=
"Description"
DataEndField
=
"AppointmentEnd"
DataKeyField
=
"AppointmentID"
DataSourceID
=
"SqlDataSource1"
DataStartField
=
"AppointmentStart"
DataSubjectField
=
"Subject"
EnableDescriptionField
=
"True"
SelectedView
=
"MonthView"
TimelineView-UserSelectable
=
"false"
>
</
telerik:RadScheduler
>
<
asp:SqlDataSource
ID
=
"SqlDataSource1"
runat
=
"server"
ConnectionString="<%$ ConnectionStrings:Knopman %>"
DeleteCommand="DELETE FROM [Appointments] WHERE [AppointmentID] = @AppointmentID"
InsertCommand="INSERT INTO [Appointments] ([Subject], [UserID], [AppointmentStart], [AppointmentEnd], [Description], [ExamEnrollmentID]) VALUES (@Subject, @UserID, @AppointmentStart, @AppointmentEnd, @Description, @ExamEnrollmentID)"
SelectCommand="SELECT * FROM [Appointments] WHERE (([UserID] = @UserID) AND ([ExamEnrollmentID] = @ExamEnrollmentID))"
UpdateCommand="UPDATE [Appointments] SET [Subject] = @Subject, [UserID] = @UserID, [AppointmentStart] = @AppointmentStart, [AppointmentEnd] = @AppointmentEnd, [Description] = @Description, [ExamEnrollmentID] = @ExamEnrollmentID WHERE [AppointmentID] = @AppointmentID">
<
DeleteParameters
>
<
asp:Parameter
Name
=
"AppointmentID"
Type
=
"Int32"
/>
</
DeleteParameters
>
<
InsertParameters
>
<
asp:Parameter
Name
=
"Subject"
Type
=
"String"
/>
<
asp:Parameter
Name
=
"AppointmentStart"
Type
=
"DateTime"
/>
<
asp:Parameter
Name
=
"AppointmentEnd"
Type
=
"DateTime"
/>
<
asp:Parameter
Name
=
"Description"
Type
=
"String"
/>
<
asp:ControlParameter
ControlID
=
"hdnUserID"
Name
=
"UserID"
PropertyName
=
"Value"
Type
=
"Int32"
/>
<
asp:ControlParameter
ControlID
=
"hdnExamEnrollmentID"
DefaultValue
=
"NULL"
Name
=
"ExamEnrollmentID"
PropertyName
=
"Value"
Type
=
"Int32"
/>
</
InsertParameters
>
<
UpdateParameters
>
<
asp:Parameter
Name
=
"Subject"
Type
=
"String"
/>
<
asp:Parameter
Name
=
"AppointmentStart"
Type
=
"DateTime"
/>
<
asp:Parameter
Name
=
"AppointmentEnd"
Type
=
"DateTime"
/>
<
asp:Parameter
Name
=
"Description"
Type
=
"String"
/>
<
asp:Parameter
Name
=
"AppointmentID"
Type
=
"Int32"
/>
<
asp:ControlParameter
ControlID
=
"hdnUserID"
Name
=
"UserID"
PropertyName
=
"Value"
Type
=
"Int32"
/>
<
asp:ControlParameter
ControlID
=
"hdnExamEnrollmentID"
DefaultValue
=
"NULL"
Name
=
"ExamEnrollmentID"
PropertyName
=
"Value"
Type
=
"Int32"
/>
</
UpdateParameters
>
<
SelectParameters
>
<
asp:ControlParameter
ControlID
=
"hdnUserID"
Name
=
"UserID"
PropertyName
=
"Value"
Type
=
"Int32"
/>
<
asp:ControlParameter
ControlID
=
"hdnExamEnrollmentID"
DefaultValue
=
"NULL"
Name
=
"ExamEnrollmentID"
PropertyName
=
"Value"
Type
=
"Int32"
/>
</
SelectParameters
>
</
asp:SqlDataSource
>
</
asp:Panel
>
</
div
>