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
Any ideas on how to get the scroll bar to appear in FireFox?
Felipe
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