Hi,
From the RadScheduler1_AppointmentClick I want to access the customattribute values.
I was trying to do that using
Dim s1 As String = e.Appointment.Attributes("RECUR_SERIES_ID") but it was returning "Nothing"
My main goal is.... when user clicks on the appointmnet i want to redirect the user to a custom page to edit the appointment, based on the customattribute value.
You can see my way of using RadScheduler here.
<telerik:RadScheduler runat="server" ID="RadScheduler1" EnableEmbeddedSkins="True" Height="630px"
Skin="Outlook" DayStartTime="06:00:00" DayEndTime="22:00:00" TimeZoneOffset="00:00:00"
DataKeyField="REP_APPT_ID" OnClientTimeSlotClick="OnClientTimeSlotClick"
DataSubjectField="Subject" CustomAttributeNames = "RECUR_SERIES_ID"
DataStartField="START_DT_TIME" DataEndField="END_DT_TIME" AllowDelete="false" AllowInsert="false" ShowViewTabs="false" >
</telerik:RadScheduler>
Am I doing any thing wrong here? Please let me know.