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

Scheduler and ContextMenu not posting back

3 Answers 48 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Dave
Top achievements
Rank 1
Dave asked on 19 Jan 2010, 05:05 PM
I am using Telerik v2009.3.1221.35 and am having a problem with the RadScheduler and its default context menu. I am handling the events server side for TimeslotContextMenuItemClicked and AppointmentContextMenuItemClicked. When I click on the TimeSlotContextMenu, the event is handled properly server side. However, when I click on the AppointmentContextMenu, the server side event is not handled. In fact, there is no postback at all for the Appointment context menu. The clientside click event works, but i need to handle it server side. Is there an attribute i need to set for the postback to fire?

<telerik:RadSplitter ID="splTreeView" runat="server" ResizeMode="AdjacentPane" LiveResize="true" Width="100%" height="700"
                    <telerik:RadPane ID="rpTree" runat="server" Width="250"
                        <telerik:RadTreeView ID="rtvConferences" runat="server" CheckBoxes="false" AllowNodeEditing="true" EnableDragAndDrop="true" EnableDragAndDropBetweenNodes="false" MultipleSelect="true"></telerik:RadTreeView> 
                    </telerik:RadPane> 
                    <telerik:RadSplitBar ID="rsbSplitBar" runat="server" CollapseMode="Forward" />                           
                    <telerik:RadPane ID="rpScheduler" runat="server" Visible="true" Width="650" Height="500"
                        <asp:HiddenField ID="hdSelectedNodeValue" runat="server" /> 
                        <telerik:RadScheduler ID="rsConferences" runat="server" Width="100%" Height="100%" OverflowBehavior="Expand" StartEditingInAdvancedForm="true" StartInsertingInAdvancedForm="true" SelectedView="MonthView" DataSubjectField="Name" DataDescriptionField="Description" DataStartField="StartTime" DataEndField="EndTime" DataKeyField="ID" CustomAttributeNames="Advocates,Prospects,Moderator" OnClientAppointmentResizeStart="Conferences_CancelResize"
                            <Localization ContextMenuAddAppointment="New Conference" ConfirmDeleteText="Are you sure you want to delete this conference?" /> 
                            
                            <TimeSlotContextMenuSettings EnableDefault="true" /> 
                            <AppointmentContextMenuSettings EnableDefault="true" /> 
                        </telerik:RadScheduler> 
                         
                    </telerik:RadPane> 
                </telerik:RadSplitter> 

 Protected Sub rsConferences_AppointmentContextMenuItemClicked(ByVal sender As ObjectByVal e As Telerik.Web.UI.AppointmentContextMenuItemClickedEventArgs) Handles rsConferences.AppointmentContextMenuItemClicked 
            Dim x = "" 
        End Sub 

3 Answers, 1 is accepted

Sort by
0
Ravi Keshwani
Top achievements
Rank 1
answered on 20 Jan 2010, 10:48 AM
Hi,

 I am also facing this issue I am facing my deadline please reply
0
Peter
Telerik team
answered on 20 Jan 2010, 12:26 PM
Hello,

This issue has been fixed in the current official release - 2009.3.1314


Regards,
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
Dave
Top achievements
Rank 1
answered on 20 Jan 2010, 08:17 PM
Great. That fixed it. Thank you!
Tags
Scheduler
Asked by
Dave
Top achievements
Rank 1
Answers by
Ravi Keshwani
Top achievements
Rank 1
Peter
Telerik team
Dave
Top achievements
Rank 1
Share this question
or