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

Reminder Drop Down Box turns into a label

3 Answers 62 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
KobusVisagie
Top achievements
Rank 1
KobusVisagie asked on 08 Jun 2012, 07:39 AM
Hi Telerik

I am not sure why this is happening, but sins we went to the new Telerik DLL version we started to get this weird problem in the scheduler's advance form, where the Reminder Drop Down turns into a label, the functionality still works but the drop down is now a rectangle with allot of labels in it, it worked fine up until we updated our controls.
Another thing, this only happens in Internet Explorer

Attached is some print screens

Regards
Gregory

3 Answers, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 08 Jun 2012, 10:48 AM
Hello Gregory,

Can you replicate the problem with the online demos? Does your web page use any additional css styles? Also, what is the exact browser mode that you use?


All the best,
Peter
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
KobusVisagie
Top achievements
Rank 1
answered on 09 Jun 2012, 09:58 AM
Hello Peter

Here is my page code i am using, as far as i know i haven't added any addition styles.
I am using IE9 in IE9 Browser mode as well as IE8 with IE8 Browser mode, both has the same effects, but if i use this same code on Google Chrome then it does not have the same effect and it workes

Kind Regards

<%@ Page Title="" Language="C#" MasterPageFile="~/FleetConnectWeb.Master" AutoEventWireup="true"
    CodeBehind="WorkshopDiary.aspx.cs" Inherits="FCReport_Website.Workshop_Diary" %>
 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContentPlaceHolder" runat="server">
    <telerik:RadCodeBlock runat="server">
        <script type="text/javascript">
            function OnClientItemClicking(sender, args) {
                if (args.get_item().get_text() == "Services") {
                    args.set_cancel(true);
                    return;
                }
            
        </script>
    </telerik:RadCodeBlock>
    <div id="WorkshopDiaryTabsMenus" style="z-index: 2;">
        <ul>
            <li><a href="#WorkshopDiary">Diary</a></li>
        </ul>
        <div id="WorkshopDiary">
            <telerik:RadScheduler ID="rchDiary" runat="server" DataDescriptionField="Body" DataEndField="End"
                DataKeyField="IDDatabaseAppointments" DataSourceID="SchedularDS" DataStartField="Start"
                DataSubjectField="Subject" EnableDescriptionField="True" Height="" Skin="Windows7"
                DataReminderField="Reminder" OnAppointmentInsert="RadScheduler1_AppointmentInsert"
                EnableExactTimeRendering="true" AppointmentStyleMode="Default" AdvancedForm-Modal="true"
                OnAppointmentContextMenuItemClicked="rchDiary_AppointmentContextMenuItemClicked"
                OnClientAppointmentContextMenuItemClicking="OnClientItemClicking" SelectedView="MonthView"
                MultiDayView-UserSelectable="true" EnableDatePicker="true" Style="z-index: 1">
                <Reminders Enabled="True" />
                <AppointmentContextMenuSettings EnableDefault="true" />
                <TimeSlotContextMenuSettings EnableDefault="true" />
                <AppointmentContextMenus>
                    <telerik:RadSchedulerContextMenu>
                        <Items>
                            <telerik:RadMenuItem Text="Open" Value="CommandEdit" ToolTip="...." />
                            <telerik:RadMenuItem IsSeparator="true" />
                            <telerik:RadMenuItem Text="Services">
                                <Items>
                                    <telerik:RadMenuItem Text="Create JobCard" Value="service" ToolTip="...." />
                                    <telerik:RadMenuItem Text="Create Service" Value="service" ToolTip="...." />
                                </Items>
                            </telerik:RadMenuItem>
                            <telerik:RadMenuItem IsSeparator="true" />
                            <telerik:RadMenuItem Text="Delete Appointment" Value="CommandDelete" ToolTip="...." />
                        </Items>
                    </telerik:RadSchedulerContextMenu>
                </AppointmentContextMenus>
                <TimeSlotContextMenus>
                </TimeSlotContextMenus>
            </telerik:RadScheduler>
            <br />
            <br />
            <asp:SqlDataSource ID="SchedularDS" runat="server" ...../>
        </div>
    </div>
</asp:Content>
0
KobusVisagie
Top achievements
Rank 1
answered on 10 Jun 2012, 03:26 PM
Hello Peter

It looks like i found the problem, it looks like the theme (Skin="Windows7") was the culprit, i changed the theme to default and it works perfectly now

Kind Regards
Gregory
Tags
Scheduler
Asked by
KobusVisagie
Top achievements
Rank 1
Answers by
Peter
Telerik team
KobusVisagie
Top achievements
Rank 1
Share this question
or