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

OverflowBehavior FireFox Height

4 Answers 77 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Felipe Saldana
Top achievements
Rank 1
Felipe Saldana asked on 23 Feb 2010, 11:18 PM
I am having a problem setting the height of the scheduler control in FireFox (FF). IE displays correctly though.

As you can see in the screenshot the scroll button does not appear. I have read in other post that the scheduler height may need to be hard-coded...so I tried that and I couldn't get that to work.

If I perform an action on the scheduler; such as change the month; the scroll bars will appear correctly.


Notes:
The scheduler is in an asp:panel with the visible property set to false. When I check a checkbox I display the scheduler by setting the asp:panel to true

                            <tr class="fieldRow" id="rowRecurringDetails3" style="height:260px"
                                <td colspan="3" style="height:260px"
                                    <telerik:RadScheduler runat="server" ID="scheduler"  Skin="Myskin" EnableEmbeddedSkins="false" 
                                         SelectedDate="2010-02-16" DayStartTime="08:00:00" DayEndTime="18:00:00" Width="480px"  Height="260px"  OverflowBehavior=Scroll 
                                         TimeZoneOffset="03:00:00" SelectedView="MonthView" ShowHeader="true" ShowViewTabs="false" 
                                         ShowNavigationPane="true" ShowFooter="true" EnableRecurrenceSupport="true" EnableAdvancedForm=true DataRecurrenceField="4" DataRecurrenceParentKeyField="6"  
                                         OnAppointmentDelete="scheduler_AppointmentDelete" OnAppointmentInsert="scheduler_AppointmentInsert" OnAppointmentUpdate="scheduler_AppointmentUpdate" OnRecurrenceExceptionCreated="scheduler_RecurrenceExceptionCreated" 
                                         AllowInsert="false"
                                        <AdvancedForm Modal="true"   /> 
                                    </telerik:RadScheduler> 
                                </td> 
                                 
 
                                 
                                <td></td
                                <td></td
                                 
                                <!-- Example Column --> 
                                <td class="exampleColumn" > 
                                    <div class="exampleColumnContent"
                                        <div class="exampleColumnTextBox"
                                            Example 
                                        </div> 
                                    </div> 
                                </td> 
                                 
                            </tr> 

Any ideas on how to get the scroll bar to appear in FireFox?


Felipe

4 Answers, 1 is accepted

Sort by
0
T. Tsonev
Telerik team
answered on 24 Feb 2010, 12:50 PM
Hi Felipe,

Try calling the repaint method of RadScheduler after showing it. This should fix the scrollbars.

Regards,
Tsvetomir Tsonev
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Felipe Saldana
Top achievements
Rank 1
answered on 24 Feb 2010, 05:08 PM
I tried calling the Rebind and Focus methods of the scheduler and neither of these worked.

Is one of these methods the repaint method you are referring to?


Thanks,

Felipe
0
Accepted
T. Tsonev
Telerik team
answered on 25 Feb 2010, 10:19 AM
Hello Felipe,

I've meant the client-side repaint method, apologies for not making this clear.

$find("RadScheduler1").repaint();

I hope this helps.

Best wishes,
Tsvetomir Tsonev
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Felipe Saldana
Top achievements
Rank 1
answered on 25 Feb 2010, 07:09 PM
Yes this worked.


Thanks!

Felipe
Tags
Scheduler
Asked by
Felipe Saldana
Top achievements
Rank 1
Answers by
T. Tsonev
Telerik team
Felipe Saldana
Top achievements
Rank 1
Share this question
or