I'm having issues with the radscheduler overlapping in monthview.
the calendar is question is:
http://eastmeadow.syntaxschools.chasestaging.net/calendar/calendarview.aspx?group=&RequestedDate=9/1/2012&RequestedCalendar=monthgrid
If you look at the 10th you can see that the 'Adult Ed' appt spans 3 days, but is hidden behind the other appointments.
I'm using the latest build of the rad controls (2012.2.607.35), but can't seem to get the appointments to not overlap if the appointment is not set to 'all day'.
Here's my current settings:
I've tried the following css with no luck:
Do you have any idea why the appointments would be overlapping like this and how to possibly correct it?
Janean
the calendar is question is:
http://eastmeadow.syntaxschools.chasestaging.net/calendar/calendarview.aspx?group=&RequestedDate=9/1/2012&RequestedCalendar=monthgrid
If you look at the 10th you can see that the 'Adult Ed' appt spans 3 days, but is hidden behind the other appointments.
I'm using the latest build of the rad controls (2012.2.607.35), but can't seem to get the appointments to not overlap if the appointment is not set to 'all day'.
Here's my current settings:
<
telerik:RadScheduler
runat
=
"server"
ID
=
"RadScheduler1"
AllowEdit
=
"False"
AllowInsert
=
"False"
AllowDelete
=
"False"
Height
=
"100%"
DayStartTime
=
"07:00:00"
DayEndTime
=
"23:00:00"
EnableDescriptionField
=
"True"
ShowAllDayRow
=
"False"
OnClientAppointmentClick
=
"OnClientApointmentClick"
OverflowBehavior
=
"Expand"
MonthView-AdaptiveRowHeight
=
"True"
>
<
MonthView
AdaptiveRowHeight
=
"false"
MinimumRowHeight
=
"5"
VisibleAppointmentsPerDay
=
"50"
/>
<
TimelineView
UserSelectable
=
"false"
/>
<
ResourceTypes
>
<
telerik:ResourceType
KeyField
=
"GroupID"
Name
=
"Group"
TextField
=
"GroupCssClass"
ForeignKeyField
=
"GroupID"
DataSourceID
=
"ldsGroups"
AllowMultipleValues
=
"true"
/>
</
ResourceTypes
>
<
WebServiceSettings
>
<
ODataSettings
InitialContainerName
=
""
></
ODataSettings
>
</
WebServiceSettings
>
<
AppointmentTemplate
>
<
div
class
=
"rsAptSubject"
>
<
div
style
=
"padding-right: 20px;"
><%# Eval("Subject") %></
div
>
<
div
style
=
"position:absolute;top:0;right:0;padding: 1px;"
>
<
span
style
=
"cursor: pointer; cursor: hand;"
>
<
asp:ImageButton
runat
=
"server"
ID
=
"Button1"
ImageUrl
=
"/images/icons/outlook.png"
AlternateText
=
"Export to iCalendar"
CommandName
=
"Export"
OnClientClick
=
"Export(this, event); return false;"
/>
</
span
>
</
div
>
</
div
>
</
AppointmentTemplate
>
<
TimeSlotContextMenuSettings
EnableDefault
=
"false"
/>
<
AppointmentContextMenuSettings
EnableDefault
=
"false"
/>
</
telerik:RadScheduler
>
I've tried the following css with no luck:
.rsApt,.rsAptIn, .rsAptContent, .RadScheduler .rsMonthView .rsAptOut, .RadScheduler .rsMonthView .rsAptMid
{
min-height
:
30px
!important
;
height
:
auto
!important
;
}
.RadScheduler .rsMonthView .rsWrap
{
min-height
:
34px
!important
;
height
:
auto
!important
;
}
Do you have any idea why the appointments would be overlapping like this and how to possibly correct it?
Janean