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>
Hello,
Thank you for your post. I have been looking into it, but since this is not a known issue, I cannot be completely sure what can cause this behavior, so could you please send an isolated sample project, where the issue is reproduced, so I can investigate it further for you.
Looking forward for your reply.
Be happy to, how do I get you a project?
When you are composing your post, there is an OPTIONS tab, which you can choose in order to attach a file.
Have a small problem getting you an example, due to the fact that the model that loads the data is tied directly to an in house object, which in turn is tied to our data base, is there any other way I can get you the needed information, screen shots, pieces of code?
If you send me the xaml definitios you use along with any custom logic you aply I will be able to try to reproduce your issue with some test data.
I am just checking the progress of this issue and was wondering if you managed to achieve your goal or if you need any further assistance on the matter.
I can suggest you look into the Output, while in Debug mode, in order to check if there are any Binding errors.
To test, I have changed to ObservableCollection, tried doing the binding on the XAML, still the blank issue, nothing is rendered except a scroll bar. Tried binding through code behind as well, same issue
Still having the same issue. It must be something to do with my binding, what objects can I bind to, I am currently binding to a CollectionViewSource, is that not acceptable? If not, I can run it through code behind like you did
I created a sample project for you where I used XamMonthView and everything seems to work ok on my side.