Hi,
I want to assign an id to each cell of scheduler, so that when the user do click in scheduler, a custom popup page be displayed and the querystring have the assigned id.
I have the code to open a popup page, but I don't know how to pass some id
Thanks for your help.
Segundo Serrano
I want to assign an id to each cell of scheduler, so that when the user do click in scheduler, a custom popup page be displayed and the querystring have the assigned id.
I have the code to open a popup page, but I don't know how to pass some id
function OnClientAppointmentClick(sender, e) { var x = newWin('../Tasks/Task.aspx?tid=1', '700', '700', 'S'); return false; } function OnClientTimeSlotClick(sender, args) { var x = newWin('../Tasks/Task.aspx', '700', '700', 'S'); return false; } </script>-------------------------------------------------- <telerik:RadScheduler runat="server" ID="RadScheduler1" Height="600px" DayStartTime="00:00:00" DayEndTime="23:00:00" DataKeyField="ID" DataSubjectField="Subject" DataStartField="Start" DataEndField="End" DataRecurrenceField="RecurrenceRule" DataRecurrenceParentKeyField="RecurrenceParentId" AppointmentStyleMode="Default" ShowResourceHeaders="false" DataReminderField="Reminder" SelectedView="WeekView" ShowFooter="false" FirstDayOfWeek="Monday" LastDayOfWeek="Saturday" OnClientAppointmentClick="OnClientAppointmentClick" OnClientTimeSlotClick="OnClientTimeSlotClick" ShowHoursColumn="false" ShowAllDayRow="false" ShowFullTime="false" ShowViewTabs="false"> <AdvancedForm Modal="true" Enabled="false" /> <TimelineView UserSelectable="false" /> <TimeSlotContextMenuSettings EnableDefault="false" /> <AppointmentContextMenuSettings EnableDefault="false" /> <Reminders Enabled="false" /> </telerik:RadScheduler>Thanks for your help.
Segundo Serrano
