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
1235
XamDateNavigator HighlightDayCriteria
posted

Hello,
I'm trying to set the HighlightDayCriteria without success:

in XAML:

<ig:XamDateNavigator x:Name="dateNavigator"
DataManager="{Binding Path=DataManager}"
HighlightDayCriteria="DaysWithActivity"
TodayButtonVisibility="Visible"
DayOfWeekHeaderVisibility="Visible"
DayOfWeekHeaderFormat="TwoCharacters">
<swi:Interaction.Triggers>
<swi:EventTrigger EventName="SelectedDatesChanged">
<mei:CallMethodAction TargetObject="{Binding}" MethodName="OnSelectedDatesChanged" />
</swi:EventTrigger>
</swi:Interaction.Triggers>
</ig:XamDateNavigator>

<ig:XamOutlookCalendarView
DataManager="{Binding Path=DataManager}"
DateNavigator="{Binding ElementName=dateNavigator}" />

in code, after settings resources, appointments, calendars and so on I

NotifyPropertyChanged(dataManagerChangeArgs);
I see the binding works in the XamOutlookCalendarView, since I can see the appointments, and if I debug the date navigator I can see it has the dataManager and the dataconnector has the appointments. Nonetheless I can't see the days with appointments highlighted.

 What am I missing?days with activity not highlighted

 Please see the attachment (consider that there are appointments either the 19th and the 21st, but none of the days is highlighted.

Roberto