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

radschedular approve appointment IE

5 Answers 25 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Mahmoud
Top achievements
Rank 1
Mahmoud asked on 12 Feb 2014, 05:13 PM
when i approve appointment in IE its not response and enter in infinite loading .. but the appointment approved if i reload but load not finished .. an solution

5 Answers, 1 is accepted

Sort by
0
Nencho
Telerik team
answered on 17 Feb 2014, 11:44 AM
Hello Mahmoud,

The described issue is quite strange. Are you able to replicate the problem with any of our online demos here?


Regards,
Nencho
Telerik
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 UI for ASP.NET AJAX, subscribe to the blog feed now.
0
Mahmoud
Top achievements
Rank 1
answered on 18 Feb 2014, 02:38 PM
the problem with me is related to IE ... when approve appointment in ie and not any other browser its not finish loading .. is this repeated issue or what ??
0
Nencho
Telerik team
answered on 21 Feb 2014, 08:12 AM
Hello Mahmoud,

We would need some additional information, in order to try to replicate the issue you are experiencing. Could you provide us with the implementation of the RadScheduler that you use at your end? In addition, specify which version of our controls are you using?

Regards,
Nencho
Telerik
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 UI for ASP.NET AJAX, subscribe to the blog feed now.
0
Mahmoud
Top achievements
Rank 1
answered on 23 Feb 2014, 10:52 AM
this is my radschedular implementation :
<telerik:RadScheduler ID="schdMyCalendar" runat="server" Width="100%"
                                CustomAttributeNames="EmployeeToClient,CreateDate,isRecurrent,Recurrence,RecurrenceStart,RequestedVisitType,CreatedByRole" 
                                DataDescriptionField="AdminNotes" DataEndField="End" 
                                DataKeyField="AppointmentID" DataRecurrenceField="RecurrenceRule" 
                                DataRecurrenceParentKeyField="RecurrenceParentID" DataStartField="Start" 
                                DataSubjectField="Subject" EnableCustomAttributeEditing="false" 
                                EnableDescriptionField="true" EnableRecurrenceSupport="true" 
                                OnAppointmentCreated="schdMyCalendar_AppointmentCreated"     
                                OnAppointmentDataBound="schdMyCalendar_AppointmentDataBound"                             
                                OnAppointmentDelete="schdMyCalendar_AppointmentDelete" 
                                OnAppointmentInsert="schdMyCalendar_AppointmentInsert" 
                                OnAppointmentUpdate="schdMyCalendar_AppointmentUpdate" 
                                OnClientAppointmentEditing="schdMyCalendar_AppointmentEditing" 
                                OnClientAppointmentDeleting="schdMyCalendar_AppointmentDeleting"
                                OnClientAppointmentInserting="schdMyCalendar_AppointmentInserting" 
                                OnClientFormCreated="schdMyCalendar_FormCreated" 
                                OnDataBound="schdMyCalendar_DataBound" 
                                OnFormCreated="schdMyCalendar_FormCreated" 
                                SelectedView="MonthView" 
                                ShowFullTime="true" Skin="Vista" StartEditingInAdvancedForm="true" 
                                StartInFullTime="true" StartInsertingInAdvancedForm="true" 
                                OnNavigationComplete="schdMyCalendar_NavigationComplete" 
                                OnClientAppointmentMoveStart="OnClientAppointmentMoveStart"
                                OnAppointmentContextMenuItemClicking="schdMyCalendar_AppointmentContextMenuItemClicking"
                                OnAppointmentContextMenuItemClicked="schdMyCalendar_AppointmentContextMenuItemClicked" 
                                OnClientAppointmentContextMenuItemClicking="schdMyCalendar_AppointmentContextMenuItemClicking"
                                OnOccurrenceDelete="schdMyCalendar_OccurrenceDelete" 
                                MinutesPerRow="30" RowHeight="70" 
                                OnAppointmentCommand="schdMyCalendar_AppointmentCommand" onformcreating="schdMyCalendar_FormCreating"
                                >
                                <TimeSlotContextMenuSettings EnableDefault="true" Skin="Vista" />
                                <AppointmentContextMenus>
                                    <telerik:RadSchedulerContextMenu runat="server" ID="SchedContextMenu" Skin="Vista">
                                        <Items>
                                            <telerik:RadMenuItem Text="History" Value="OpenHistory" />
                                            <telerik:RadMenuItem Text="Edit" Value="CommandEdit" />
                                            <telerik:RadMenuItem Text="Approve" Value="Approve" />
                                            <telerik:RadMenuItem Text="Delete" Value="CommandDelete" />
                                        </Items>
                                    </telerik:RadSchedulerContextMenu>
                                </AppointmentContextMenus>
                                <%-- DayStartTime="00:00:00" DayEndTime="23:59:59" 
                                OnNavigationCommand="schdMyCalendar_NavigationCommand" 
                                OnAppointmentDataBound="schdMyCalendar_AppointmentDataBound" 
                            OnClientRecurrenceActionDialogShowing="schdMyCalendar_RecurrenceActionDialogShowing"
                            OnClientAppointmentDeleting="schdMyCalendar_AppointmentDeleting"
                            ShowHeader="true" ShowResourceHeaders="true" ShowViewTabs="true" ShowNavigationPane="true"--%>
                                <%--EnableAdvancedForm="true"EnableResourceEditing="true" 
                            EnableDescriptionField="true" DataDescriptionField="AdminNotes"
                             OnAppointmentCommand="schdMyCalendar_AppointmentCommand"
                             FirstDayOfWeek="Monday" LastDayOfWeek="Friday"--%>
                                <%--OnFormCreated="schdMyCalendar_FormCreated" --%>
                                <AdvancedForm  />
                                <ResourceTypes>
                                    <telerik:ResourceType ForeignKeyField="EmployeeID" KeyField="ID" 
                                        Name="Employee" TextField="Name" />
                                    <telerik:ResourceType ForeignKeyField="ClientID" KeyField="ID" Name="Client" 
                                        TextField="Name" />
                                    <telerik:ResourceType ForeignKeyField="StatusID" KeyField="StatusID" 
                                        Name="Status" TextField="StatusName" />
                                    <telerik:ResourceType ForeignKeyField="ClientTypeID" KeyField="ClientTypeID" 
                                        Name="Visit Type" TextField="Description" />
                                </ResourceTypes>
                                <AppointmentTemplate>
                                    <span style="font-weight: bold; font-size:x-small;"> 
                                        <asp:ImageButton ID="btnApprove" runat="server" ImageUrl="Pics/tick.png" CommandName="Approve" /> 
                                        <%# Convert.ToDateTime(Eval("Start")).ToShortTimeString()%> 
                                        - <%# Eval("RequestedVisitType")%> 
                                        <asp:Image ID="creatorType" runat="server" Height="13" Width="13" />
                                        <asp:Image ImageUrl="Pics/recurrent10.png" Visible='<%# Convert.ToBoolean(Eval("isRecurrent"))%>' runat="server" />
                                    </span>
                                    <hr style="background-color: Aqua; color: Aqua;" />
                                    <span style="font-weight: lighter; font-size:x-small; width:100%; height: 100%; overflow:hidden;">
                                    <%# Eval("EmployeeToClient")%></span>
                                </AppointmentTemplate>
                            </telerik:RadScheduler> 
and my telerik product vesrion is :2012.2.724.35.. 
0
Nencho
Telerik team
answered on 26 Feb 2014, 03:54 PM
Hello Mahmoud,

The demonstrated declaration of the RadScheduler does not suggest for any issues that might arise. However, I noticed that there is no DataSourceID set and you are performing the operations for populating with data, inserting and updating at code-behind. This is where the issue might be originated. Please make sure the custom logic you had implemented is correct. In addition, I would suggest you to refer to this online demo, where you could observe a possible custom implementation.

Regards,
Nencho
Telerik
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 UI for ASP.NET AJAX, subscribe to the blog feed now.
Tags
Scheduler
Asked by
Mahmoud
Top achievements
Rank 1
Answers by
Nencho
Telerik team
Mahmoud
Top achievements
Rank 1
Share this question
or