I have a telerik:RadScheduler control in my page. We can expand this slot by dragging from the bottom. Internally the appointment is getting changed. But while expanding, it is not displaying the shadow at the background. This issue is occuring in Internet Explorer, while it is working properly in Google Chrome. Can anyone please help me on this.
<telerik:RadScheduler ID="RadSchedulerReceivingBay" runat="server" GroupBy="Bay"
DataSourceID="ObjectDataSourceBookingScheduleItem" DataKeyField="BookingID" DataSubjectField="Vendor"
DataStartField="Start" DataEndField="End" Height="100%"
Culture="en-GB" ShowAllDayRow="False" ShowDateHeaders="False"
ShowFooter="True" ShowHeader="False" ShowNavigationPane="False"
ShowViewTabs="False" MinutesPerRow="15"
DayStartTime="05:00:00" Font-Size="8pt"
onappointmentdatabound="RadSchedulerReceivingBay_AppointmentDataBound"
onappointmentinsert="RadSchedulerReceivingBay_AppointmentInsert"
onappointmentupdate="RadSchedulerReceivingBay_AppointmentUpdate"
RowHeight="20px"
StartInsertingInAdvancedForm="True"
onformcreating="RadSchedulerReceivingBay_FormCreating"
onformcreated="RadSchedulerReceivingBay_FormCreated"
onappointmentdelete="RadSchedulerReceivingBay_AppointmentDelete"
onclientappointmentmoving="OnClientAppointmentMoving"
onclientappointmentdeleting="ResetTimer"
onclientappointmentediting="ResetTimer"
onclientappointmentinserting="ResetTimer"
onclientappointmentmoveend="ClientAppointmentChangeConfirm" WorkDayEndTime="23:59:00"
CustomAttributeNames="TimeStampString,IsBlocker" EnableCustomAttributeEditing="True"
AdvancedForm-Modal="False" WorkDayStartTime="00:00:00"
onclientappointmentresizeend="ClientAppointmentChangeConfirm"
NumberOfHoveredRows="1"
onappointmentcreated="RadSchedulerReceivingBay_AppointmentCreated"
ondatabound="RadSchedulerReceivingBay_DataBound"
onappointmentcommand="RadSchedulerReceivingBay_AppointmentCommand"
EnableEmbeddedSkins="true" EnableEmbeddedBaseStylesheet="true">
<AdvancedForm EnableCustomAttributeEditing="True" />
<ResourceTypes>
<telerik:ResourceType KeyField="ReceivingBayID" Name="Bay" TextField="Name" ForeignKeyField="ReceivingBayID"
DataSourceID="ObjectDataSourceBays" />
</ResourceTypes>
<AdvancedEditTemplate>
<uc2:BookingDetailControl ID="BookingDetailControl" runat="server" Action="edit" />
</AdvancedEditTemplate>
<DayView WorkDayEndTime="18:00:00" />
<AdvancedInsertTemplate>
<uc2:BookingDetailControl ID="BookingDetailControl" runat="server" Action="insert" />
</AdvancedInsertTemplate>
</telerik:RadScheduler>