This question is locked. New answers and comments are not allowed.
Hello, I have a mistake that is driving me crazy, I have a RadScheduleView implemented and I need to separate it by groups. I had implemented what I want following http://www.telerik.com/help/silverlight/radscheduleview-features-resources.html I'm able to compile correctly but I had the error in execution time: The property 'ResourceName' was not found in type 'Resource'
Here's my code:
Here's my code:
<telerik:RadScheduleView.GroupDescriptionsSource> <telerik:GroupDescriptionCollection> <telerik:ResourceGroupDescription ResourceType="ProfesionalesGroup" /> </telerik:GroupDescriptionCollection></telerik:RadScheduleView.GroupDescriptionsSource><telerik:RadScheduleView.ResourceTypesSource> <telerik:ResourceTypeCollection> <telerik:ResourceType Name="ProfesionalesGroup"> <telerik:Resource ResourceName="Profesional1" DisplayName="Profesional 1" /> <telerik:Resource ResourceName="Profesional2" DisplayName="Profesional 2"/> </telerik:ResourceType> </telerik:ResourceTypeCollection></telerik:RadScheduleView.ResourceTypesSource>