Scheduler order apointments

Is there any way to order the appointments on the scheduler?

Hi @mmitrovic,

RadzenScheduler will order the appointments in a slot by their start and then by their end. Here is the actual implementation: radzen-blazor/DaySlotEvents.razor at master ยท radzenhq/radzen-blazor ยท GitHub

Hi Korchev,

Is there any way to customize the order by clause?
I put all appointments on a daily basics and all have same start date and end date. And some of them are having higher priority then others (they should be on top).

It's only a proposal.
Meybe if we add a third option order by, by a Apointment text.

1 Like

Normally there should bee a need to sort the appointments by anything else. They should appear in the order they are defined in the data if their end and start are the same. Here is an example:

        new Appointment { Start = DateTime.Today.AddHours(10), End = DateTime.Today.AddHours(12), Text = "Online meeting1" },
        new Appointment { Start = DateTime.Today.AddHours(10), End = DateTime.Today.AddHours(12), Text = "Online meeting2" },
        new Appointment { Start = DateTime.Today.AddHours(10), End = DateTime.Today.AddHours(12), Text = "Online meeting3" },
        new Appointment { Start = DateTime.Today.AddHours(10), End = DateTime.Today.AddHours(12), Text = "Online meeting4" },