Hi,
I am in the process of upgrading an exisiting winforms application that manages room reservations.
Currently we are just showing the reservations in a grid. I am planning to use the RadScheduler to show the reservations.
I already have a Reservation Class as follows.
How do I go about using the above class to populate the scheduler. The only thing I can think of is to map the above class to the Appointment class for populating the scheduler. Is there an easier way?
My other question is how do I go about using the Reservation Form that I have already created instead of the Appointment Dialog that the scheduler displays by default when the user wants to edit / create reservations.
thanks
I am in the process of upgrading an exisiting winforms application that manages room reservations.
Currently we are just showing the reservations in a grid. I am planning to use the RadScheduler to show the reservations.
I already have a Reservation Class as follows.
| public class Reservation |
| { |
| public int ReservationId { get; set; } |
| public DateTime RequestDate { get; set; } |
| public string RequestedByName { get; set; } |
| public DateTime StartDate { get; set; } |
| public DateTime EndDate { get; set; } |
| public string Comments { get; set; } |
| public int RoomId { get; set; } |
| } |
How do I go about using the above class to populate the scheduler. The only thing I can think of is to map the above class to the Appointment class for populating the scheduler. Is there an easier way?
My other question is how do I go about using the Reservation Form that I have already created instead of the Appointment Dialog that the scheduler displays by default when the user wants to edit / create reservations.
thanks