While we have +more records on any day and have a appointment on next day in the more records that are not showing on that date.
Please refer to the screenshot and data attached herewith:
Please update appointments with this code below:
IList<Appointment> appointments = new List<Appointment>
{
new Appointment { Start = DateTime.Today.AddDays(-2), End = DateTime.Today.AddDays(-2), Text = "Birthday" },
new Appointment { Start = DateTime.Today.AddDays(-11), End = DateTime.Today.AddDays(-10), Text = "Day off" },
new Appointment { Start = DateTime.Today.AddDays(-10), End = DateTime.Today.AddDays(-8), Text = "Work from home" },
new Appointment { Start = DateTime.Today.AddHours(10), End = DateTime.Today.AddHours(12), Text = "Online meeting" },
new Appointment { Start = DateTime.Today.AddHours(10), End = DateTime.Today.AddHours(13), Text = "Skype call" },
new Appointment { Start = DateTime.Today.AddHours(10), End = DateTime.Today.AddHours(13), Text = "Skype call" },
new Appointment { Start = DateTime.Today, End = DateTime.Today.AddDays(12), Text = "Skype call" },
new Appointment { Start = DateTime.Today.AddHours(14), End = DateTime.Today.AddHours(14).AddMinutes(30), Text = "Dentist appointment" },
new Appointment { Start = DateTime.Today, End = DateTime.Today.AddDays(12), Text = "Vacation" },
};
Unfortunately I am not sure I fully understand what the problem is. Please clarify.
Hello @korchev
please update given appointments code to Radzen demo.
As you can see there is some appointments on monthly view and dates highlighted 30th April to 2nd of May as shown on the 1st screenshot.
Now the thing is we have 4 records on 30th April to 2nd of May and there is three records visible on the view. When click on +1 more link the popup will appear as shown in the 2nd screenshot.
There is a record 'Skype call' with end date 3rd of May that is the issue on view that will be available on 3rd May day box the month view.
Hope this will clear.
I am afraid I still don't understand it. Please leave only the relevant appointments and use unique text (instead of Skype Call).
I have updated appointments data please update your appointment data with given
IList<Appointment> appointments = new List<Appointment>
{
new Appointment { Start = DateTime.Today.AddDays(-8), End = DateTime.Today.AddDays(-6), Text = "Birthday" },
new Appointment { Start = DateTime.Today.AddDays(-8), End = DateTime.Today.AddDays(-6), Text = "Day off" },
new Appointment { Start = DateTime.Today.AddDays(-8), End = DateTime.Today.AddDays(-6), Text = "Work from home" },
new Appointment { Start = DateTime.Today.AddDays(-7), End = DateTime.Today.AddDays(-4), Text = "Vacation" },
};
The vacation record not showing till provided end date.
Thanks! I see what you mean - this is indeed a case which is not handled at all. We will need to implement a new rendering algorithm to support this case. We can probably squeeze that in for the upcoming Radzen.Blazor v7 major release.
1 Like
Hi @korchev
The issue with the scheduler has been resolved in the latest release. Thank you!
1 Like