I need to add user names and their appointments in the timeline view so in order to achieve that I am adding ResourceTypes to the scheduler in the following manner:
As soon as I add the <ResourceTypes> part the scheduler navigation stops working (Day, Week, Month, Timeline and others). Would could be causing this behavior? Thanks
<asp:SqlDataSource ID="sqlMain" runat="server"></asp:SqlDataSource><asp:SqlDataSource ID="sqlUsers" runat="server"></asp:SqlDataSource><telerik:RadScheduler ID="radSchedule1" runat="server" Height="100%"MinutesPerRow="15" Skin="Web20" StartInsertingInAdvancedForm="True"AdvancedForm-Modal="True" AdvancedForm-Width="400px" TimelineView-GroupBy="Users" TimelineView-GroupingDirection="Vertical" FirstDayOfWeek="Monday" SelectedView="WeekView" Localization-HeaderWeek="Work Week"><ResourceTypes> <telerik:ResourceType KeyField="UserId" Name="Users" TextField="Name" ForeignKeyField="UserId" DataSourceID="sqlUsers" /></ResourceTypes><AdvancedInsertTemplate> ......</AdvancedInsertTemplate><AdvancedEditTemplate> ......</AdvancedEditTemplate></telerik:RadScheduler>As soon as I add the <ResourceTypes> part the scheduler navigation stops working (Day, Week, Month, Timeline and others). Would could be causing this behavior? Thanks
