This question is locked. New answers and comments are not allowed.
How to get the selected month in schedule view. I m using
<telerik:MonthViewDefinition CalendarWeekRule="FirstFullWeek" FirstDayOfWeek="Monday" GroupFilter="{Binding GroupFilter,Mode=TwoWay}" />
And a breadcrum to navigate between day week and month view
<telerik:RadRibbonButton Text="{Binding LocalizedStrings.CAL_MAIN_WEEK, Source={StaticResource myCustomResources},Converter={StaticResource CommonUpperCaseConverters}}" Margin="0,0,15,0" Style="{StaticResource CalendarNavigateViewButton}" Command="{Binding DC[NavigateToWeekCommand], Mode=TwoWay}" VerticalAlignment="Center" CommandTarget="{Binding ElementName=radScheduleDetails}" Click="RadRibbonButton_Click" Name="weekButton" />I want to identify which month i was in when I click on weekButton.
Is there a simpler way other than using start/end days or appointment days?
Thank you in advance,