Sorry Dan, bad use of "space data". My resource information, aside from the actual space, is in a different DataSet.
I will try again. I have a DataSet, with 4 tables, which populatevia a webservice from our scheduling database. Currently, I am only pulling event/reservation data for 1 space. (Later I will add more spaces and be interested in the resource view.) One Event can have multiple Reservations and the Reservations can be in multiple Spaces. Example: A Food Toxicology conference is one event but it would have multiple reservations for break out sessions.
The tables in the dataset are SPACE_RESERVATION(parent), SPACE_RESERVATIONS, SPACES, EVENT.
EVENT = this includes the event_name, event_title, event_type, event_start_dt, event_end_dt........etc.
SPACE_RESERVATIONS = all possible occurances of the event and includes reservation_start, reservation_end....etc.
SPACES = The space the reservation/occurance is happening in
Ihave set the DataMember to SPACE_RESERVATIONS and the reservation_start and reservation_end display on the calendar control fine after your last suggestion. However, I also need the event_title from the EVENT table in the DataSet to display in the DayPilotCalendar.DataTextField for each reservation.(I am currently using head count from the space_reservations table to meet the required field)
I hope this makes more sense. I just need to grab the title which is another table other than the table I set as the DataMember.
Thank you very much for your assistance.
Jason