I am not using Labels as is defined in Scheduler, but rather using Rooms as the labels. The ID value of the Room is an integer value. In the Appointments table, we don't have a Properties field, which looks like that is what is used to store the references. I have mapped the category information as below
In my appointments, I generate string of what looks similar to the properties field in the sample.
<c1:NestedPropertySetter
PropertyName="DataStorage.AppointmentStorage.Mappings.AppointmentProperties.MappingName"
Value="EventProperties"/>
<
c1:NestedPropertySetter
PropertyName="DataStorage.LabelStorage.DataMember"
Value="Rooms"/>
<c1:NestedPropertySetter
PropertyName="DataStorage.LabelStorage.DataSource"
Value="{StaticResource RoomsDS}"/>
<c1:NestedPropertySetter
PropertyName="DataStorage.LabelStorage.Mappings.IdMapping.MappingName"
Value="ID"/>
<c1:NestedPropertySetter
PropertyName="DataStorage.LabelStorage.Mappings.ColorMapping.MappingName"
Value="ColorCode"/>
<c1:NestedPropertySetter
PropertyName="DataStorage.LabelStorage.Mappings.TextMapping.MappingName"
Value="Name"/>
1. Is it possible to link to a field that is an integer?
2. What specifically is the Appointment Mapping looking for?