I have a modified xml Appointments file with users added anb I am using the sample project http://www.telerik.com/ClientsFiles/138467_radschedulermvc-demo.zip .
I have selected StartEditingInAdvancedForm="true", the form opens and I see the User dropdown but it is not populated with the users how do I go about this?
Thanks
I have selected StartEditingInAdvancedForm="true", the form opens and I see the User dropdown but it is not populated with the users how do I go about this?
<telerik:RadScheduler runat="server" ID="RadScheduler1" Height="100%" AllowDelete="False" AllowEdit="False" AllowInsert="False" Skin="Office2007" StartEditingInAdvancedForm="true" SelectedView="WeekView" DayEndTime="18:00:00" DayStartTime="08:00:00" ShowFooter="false" Culture="en-GB"> <AdvancedForm Modal="true" /> <ResourceTypes> <telerik:ResourceType KeyField="Key" Name="User" TextField="Text" ForeignKeyField="ID" DataSourceID="XmlSchedulerProvider" /> </ResourceTypes> <WebServiceSettings Path="~/Models/SchedulerWebService.asmx" /> </telerik:RadScheduler>Thanks