Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1095
Blank Calendar
posted

I must be doing something wrong. I have a WPF application, have a xamMonthView, I used the online example for single instance. When I run my application, I can see the scroll back, but the area were the calendar should be is blank, if I scroll the area, it shows the dates, so the data is loading, see below for the assignments. What is also strange is if I try to render just the calendar unattached, the same thing happens

<ig:XamMonthView x:Name="calCallBacks" Height="334" Width="565">
<ig:XamMonthView.DataManager>
<ig:XamScheduleDataManager CurrentUserId="1" x:Name="dataManager">
<ig:XamScheduleDataManager.CalendarGroups>
<ig:CalendarGroup InitialCalendarIds="1"/>
</ig:XamScheduleDataManager.CalendarGroups>
<ig:XamScheduleDataManager.DataConnector>
<ig:ListScheduleDataConnector
ResourceItemsSource="{Binding CallResponse.CalControl_Resources}"
ResourceCalendarItemsSource="{Binding CallResponse.CalControl_Calendar_Resources}"
AppointmentItemsSource="{Binding CallResponse.Marketing_Upcoming_CallBacks_Calendar}"/>
</ig:XamScheduleDataManager.DataConnector>
</ig:XamScheduleDataManager>
</ig:XamMonthView.DataManager>
</ig:XamMonthView>