This is a migrated thread and some comments may be shown as answers.

[Solved] overflow and smaller rowheight causes appointments to be misaligned

3 Answers 177 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Ron Cirka
Top achievements
Rank 1
Ron Cirka asked on 15 Sep 2009, 08:06 PM
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> 

3 Answers, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 16 Sep 2009, 02:25 PM
Hi Ron,

RadScheduler does not support RowHeight less than 14px.

Greetings,
Peter
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Ron Cirka
Top achievements
Rank 1
answered on 24 Sep 2009, 02:17 PM
Do you know if it will be supported in the future?
0
Peter
Telerik team
answered on 24 Sep 2009, 02:42 PM
Hi Ron,

No, we don't have such plans for the near future.



Peter
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Scheduler
Asked by
Ron Cirka
Top achievements
Rank 1
Answers by
Peter
Telerik team
Ron Cirka
Top achievements
Rank 1
Share this question
or