Telerik controls version 2010.1.422.1040
I recently took over a Silverlight Telerik scheduler which was having an issue with displaying appointments on a resource view. The only way I could get appointments to display is if “DisplayEmptyGroup” property on the scheduler was set to true. All the appointments were assigned to a resource, but would not display on the scheduler.
The issue was the assignment of the resources to appointments. The appointments were loaded and added to the Telerik appointment collection. Then each appointment in the collection was looped through and assigned to the resource. So as the appointments were added to the collection, they defaulted to an empty resource group since it was not yet assigned to the resource. For some reason, since the empty group is not displayed (“DisplayEmptyGroup” set to false), the appointments did not show up on the scheduler when the resource was eventually assigned to the appointment.
To fix the problem, I assigned the resource to an appointment before adding it to the collection. Problem solved!!!