
Let me know if more info is needed and please help when you can.
Also, I can get the reminders to popup but I have to have two reminders setup for it to work. If I have only one reminder showing it will not popup.
7 Answers, 1 is accepted
You have to watch out that the Reminders-Enabled="true" property of RadScheduler is set. I am attaching a sample project where similar functionality is working as expected.
Hope this will be helpful.
Plamen
the Telerik team

<
telerik:RadScheduler
ID
=
"RadSchedulerProjectSchedule"
runat
=
"server"
DataEndField
=
"END_DATE"
DataStartField
=
"START_DATE"
DataKeyField
=
"ID"
DataSubjectField
=
"JOB_NUMBER"
AppointmentStyleMode
=
"Default"
EnableAdvancedForm
=
"true"
OverflowBehavior
=
"Expand"
AllowDelete
=
"False"
Localization-HeaderMultiDay
=
"Resource"
EnableViewState
=
"true"
OnClientTimeSlotClick
=
"OnClientTimeSlotClick"
StartInsertingInAdvancedForm
=
"false"
ExportSettings-OpenInNewWindow
=
"True"
ToolTip
=
''
TimeSlotContextMenuSettings-EnableEmbeddedSkins
=
"False"
ViewStateMode
=
"Enabled"
OnClientAppointmentContextMenuItemClicking
=
"JSOnClientApptContextMenuItemClicked"
EnableRecurrenceSupport
=
"true"
Reminders-Enabled
=
"True"
StartEditingInAdvancedForm
=
"false"
DataReminderField
=
"Reminder"
>
<
MultiDayView
NumberOfDays
=
"10"
/>
<
TimelineView
NumberOfSlots
=
"14"
ShowDateHeaders
=
"True"
ShowResourceHeaders
=
"True"
/>
<
MonthView
VisibleAppointmentsPerDay
=
"5"
AdaptiveRowHeight
=
"false"
/>
<
AdvancedForm
Modal
=
"true"
></
AdvancedForm
>
<
AppointmentContextMenus
>
<
telerik:RadSchedulerContextMenu
runat
=
"server"
ID
=
"SchedulerAppointmentContextMenuTask"
>
<
Items
>
<
telerik:RadMenuItem
Text
=
"Edit Task"
Value
=
"Edit"
/>
<
telerik:RadMenuItem
IsSeparator
=
"True"
/>
<
telerik:RadMenuItem
Text
=
"Edit Assignment"
Value
=
"EditAssignment"
/>
<
telerik:RadMenuItem
IsSeparator
=
"True"
/>
<
telerik:RadMenuItem
Text
=
"Calculate Schedule"
Value
=
"Calculate"
/>
<
telerik:RadMenuItem
IsSeparator
=
"True"
/>
<
telerik:RadMenuItem
Text
=
"Go to Job"
Value
=
"JC"
/>
<
telerik:RadMenuItem
IsSeparator
=
"True"
/>
<
telerik:RadMenuItem
Text
=
"Go to Schedule"
Value
=
"PS"
/>
<%-- <
telerik:RadMenuItem
IsSeparator
=
"True"
/>
<
telerik:RadMenuItem
Text
=
"Task Information"
Value
=
"TT"
/>--%>
</
Items
>
</
telerik:RadSchedulerContextMenu
>
<
telerik:RadSchedulerContextMenu
runat
=
"server"
ID
=
"SchedulerAppointmentContextMenu"
>
<
Items
>
<
telerik:RadMenuItem
Text
=
"Edit"
Value
=
"Edit"
/>
<
telerik:RadMenuItem
IsSeparator
=
"True"
/>
<
telerik:RadMenuItem
Text
=
"Delete"
Value
=
"CommandDelete"
/>
</
Items
>
</
telerik:RadSchedulerContextMenu
>
<
telerik:RadSchedulerContextMenu
runat
=
"server"
ID
=
"SchedulerAppointmentContextMenuDisabled"
>
<
Items
>
<
telerik:RadMenuItem
Text
=
"Edit"
Value
=
"Edit"
Enabled
=
"false"
/>
<
telerik:RadMenuItem
IsSeparator
=
"True"
/>
<
telerik:RadMenuItem
Text
=
"Delete"
Value
=
"CommandDelete"
Enabled
=
"false"
/>
</
Items
>
</
telerik:RadSchedulerContextMenu
>
</
AppointmentContextMenus
>
<
TimeSlotContextMenuSettings
EnableDefault
=
"true"
/>
<
AppointmentContextMenuSettings
EnableDefault
=
"true"
/>
<
ExportSettings
OpenInNewWindow
=
"True"
FileName
=
"SchedulerExport"
>
<
Pdf
PageTitle
=
"Schedule"
Author
=
"Telerik"
Creator
=
"Telerik"
Title
=
"Schedule"
/>
</
ExportSettings
>
</
telerik:RadScheduler
>
It is not quite clear what exactly is the issue observed -would you please elaborate a little bit the scenario so we could be more helpful. Please let me know if it is reproducible in the attached project or in the online demo and if yes I please let us know the exact steps to reproduce it so we could be more helpful.
Plamen
the Telerik team

I create one appointment and set it with a reminder to go off 5 minutes before. After a little bit when the reminder is supposed to popup it does not. I create another appointment that is a little later in the day and set a reminder for it. After a little bit when the reminder is supposed to popup for the second appointment, it does popup and the reminder window shows both appointments. What is weird is that no matter what I do if I don't have more than one appointment with an expired reminder, the reminder popup will not display.
Below is a screenshot example. The code I gave before was for just the scheduler control. In the code behind I databind the scheduler to a dataset of appointments and set the reminder for each appointment on "AppointmentDataBound". My reminder value is just a number to specify minutes before the reminder is triggered. My insert and edit appointments window are custom.
Have you ever seen this happen before? Let me know if you need more info. I started to use the demo but pretty much out on my own now and could not recreate in demo.
Thank you for providing more information about the issue.
Unfortunately we are not aware of such unusual behavior in RadScheduler and it seems that this behavior is connected with you custom implementation.
I will recommend you to refer to this on-line demo (or get the code from this Code Library) where the proper way to use Reminders with custom insert and edit form is provided and the reminders are triggered from only one appointment.
Hope this will be helpful.
Plamen
the Telerik team

As long as the reminder is loaded with appointment should it not display no matter what or would a setting cause it not to popup?
After further testing I found out that this issue I am having is only happening when using Chrome. Firefox and IE do not have the issue and work properly.
This unusual behavior in Chrome is a known one and is already fixed in Q1 2013. Hope this will solve the issue.
Plamen
the Telerik team