I've made a lot of progress with the scheduler, but I am running into one issue.
I am working on scheduling physicians and they are either scheduled as a person or a group.
I have two seperate drop down boxes. One for physicians and one for groups.
I am able to display the appointment and return either the group name or physician name on the appointment box, but I have set a parameter for inserting or updating entries with a @Type parameter. @Type is defined in my c# code and works for all other function, except when dragging an appointment to another day. @Type sets whether the insertion was a physician or a group. When I do a report it will need to know if the ID stored is a physician ID or group ID. Based on that it will resolve group/physician names and create links.
Long story short I need to be able to define @Type insert parameter while the appointment is being moved to another day. The appointment wouldn't necessarily be the last appointment open, which is making it harder. The javascripting I've tried so far with OnClientAppointmentMoveEnd has caused the appointment to not be stored in SQL at all.