I have a radscheduler with OverflowBehavior="scroll". If i make the rowheight smaller, say 10px, it causes the appointments to be off. For example, an appointment that should end at 10am now ends at 6:30am. If I remove the rowheight then it looks normal. Is there a way to fix this? I am using firefox.
| <script type="text/javascript"> |
| /* Firefox resize scrollable content */ |
| function hideScrollableArea(sender, eventArgs) { |
| if ($telerik.isFirefox) |
| $telerik.$('.rsContentScrollArea').css('overflow', 'hidden'); |
| } |
| function showScrollableArea(sender, eventArgs) { |
| if ($telerik.isFirefox) |
| $telerik.$('.rsContentScrollArea').css('overflow', 'auto'); |
| } |
| </script> |
| <telerik:RadScheduler runat="server" ID="RadScheduler1" Skin="Vista" EnableEmbeddedSkins="True" |
| MultiDayView-UserSelectable="true" TimelineView-UserSelectable="false" ShowNavigationPane="false" |
| SelectedView="MultiDayView" ShowFooter="false" TimeZoneOffset="-05:00:00" DayStartTime="00:00:00" |
| DayEndTime="23:59:00" OverflowBehavior="Scroll" Height="551px" DataSourceID="dsRadScheduler1" |
| MonthView-VisibleAppointmentsPerDay="4" DataKeyField="Conf_ID" DataSubjectField="ConferenceName" |
| DataStartField="StartTime" OnAppointmentDataBound="RadScheduler1_OnAppointmentDataBound" |
| DataEndField="EndTime" AllowDelete="false" AllowEdit="false" AllowInsert="true" |
| OnClientAppointmentDoubleClick="RadScheduler1_OnClientAppointmentDoubleClick" RowHeight="10px" |
| OnClientTimeSlotContextMenu="timeSlotContextMenu" OnClientAppointmentInserting="RadScheduler1_OnClientAppointmentInserting"> |
| </telerik:RadScheduler> |
| <asp:LinqDataSource runat="server" ID="dsRadScheduler1" OnSelecting="dsRadScheduler1_OnSelecting"> |
| </asp:LinqDataSource> |