BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
Thank you in advance for your time. I have attached a new .net 8 core application. the recurring evnet will not show for me and I am not sure why. I have tried many fixes here but none of worked for me.
Please advise.
Hi Keith,
The recurrence rule value is not being properly used. Please avoid empty spaces in the recurrence rule value like in the code below. Please try the solution and let us know if you need further assistance.
[index.cshtml]
@{ ViewData["Title"] = "Home page";
List<AppointmentData> appData = new List<AppointmentData>(); appData.Add(new AppointmentData { Id = 1, Subject = "Explosion of Betelgeuse Star", StartTime = new DateTime(2022, 2, 11, 9, 30, 0), EndTime = new DateTime(2022, 2, 11, 11, 0, 0) }); appData.Add(new AppointmentData { Id = 2, Subject = "Thule Air Crash Report", StartTime = new DateTime(2022, 2, 12, 12, 0, 0), EndTime = new DateTime(2022, 2, 12, 14, 0, 0) }); appData.Add(new AppointmentData { Id = 3, Subject = "Blue Moon Eclipse", StartTime = new DateTime(2022, 2, 13, 9, 30, 0), EndTime = new DateTime(2022, 2, 13, 11, 0, 0) }); appData.Add(new AppointmentData { Id = 4, Subject = "Meteor Showers in 2022", StartTime = new DateTime(2022, 2, 14, 13, 0, 0), EndTime = new DateTime(2022, 2, 14, 14, 30, 0) }); appData.Add(new AppointmentData { Id = 5, Subject = "Milky Way as Melting pot", StartTime = new DateTime(2022, 2, 15, 12, 0, 0), EndTime = new DateTime(2022, 2, 15, 14, 0, 0), RecurrenceRule = "FREQ=DAILY;INTERVAL=1;COUNT=5" });
List<ScheduleView> viewOption = new List<ScheduleView>() { new ScheduleView { Option = Syncfusion.EJ2.Schedule.View.Week }, new ScheduleView { Option = Syncfusion.EJ2.Schedule.View.TimelineDay } }; } |
Sample: Attached as Zip
Regards,
Ashok
Thank you!!! That did the trick
Hi Keith,
You are welcome. We are happy that our provided solution is working for you. Kindly get back to us if you need any further assistance.
Regards,
Swathi Ravi