Hi,
i am working on React Scheduler (without EJS). For my use, appointments need to be ordered by Name instead of StartTime or EndTime.
[{
"LastName": "EARL",
"StartTime": "2020-04-23T14:00:00",
"EndTime": "2020-04-23T17:00:00"
}, {
"LastName": "FRANK",
"StartTime": "2020-04-23T14:00:00",
"EndTime": "2020-04-23T18:00:00",
}]
By the given JSON, appointments need to be displayed as "EARL" and "FRANK", but scheduler is displaying as "FRANK" and "EARL" based on their Time Slots, where FRANK (4 hours) time slot is greater than EARL (3 hours).
How can I get these appointments ordered by their name in the scheduler?
any help will be greatly appreciated.
Thanks,
Ravi B.