I'm working on a training scheduling application using SfSchedule in Blazor (timeline month view), and I would like to implement the following layout and behavior:
- One row per training room (about 20 rooms total).
- For each room, I need two stacked lanes:
- The top lane displays the training session scheduled in that room.
- The bottom lane shows the trainer assigned to that session.
- Additionally, a special row at the top of the schedule should represent remote training days (teleworking), when no physical room is used.
I also need to support drag-and-drop interactions:
- Dragging a training session to another available room (on the same day) should move the trainer along with the session.
- Dragging a session to the "remote" row should free the room and cause the trainer to disappear, since they are no longer assigned to an on-site session.
Questions:
- Is this layout and drag-and-drop behavior possible with SfSchedule in Blazor?
- How should I model the resources, appointments, and custom lanes to achieve this?
- Are there any examples, demos, documentation, or blog posts that could help me get started?
Thanks in advance!