This is a migrated thread and some comments may be shown as answers.

DisplayDateChanged event no longer exists

1 Answer 29 Views
DatePicker
This is a migrated thread and some comments may be shown as answers.
Stephen
Top achievements
Rank 1
Stephen asked on 07 Sep 2011, 10:12 AM
I recently upgrade to 2011.2.712.1040 and found that the DisplayDateChanged event no longer exists.\

Will it be safe to just use SelectionChanged event instead?

Also the IsTodayHighlighted property is gone, what can i use as an alternative?

1 Answer, 1 is accepted

Sort by
0
George
Telerik team
answered on 13 Sep 2011, 08:27 AM
Hello Stephen, 


Straight to your questions:

  • We do recommend using the SelectionChanged event instead of DisplayDateChanged as well.
  • Please, refer to the release notes where you can find more information about the changes in the RadDateTimePicker control - http://www.telerik.com/products/silverlight/whats-new/release-history/q2-2010-version-2010-2-0714-183628555.aspx . In order to set IsTodayHighlighted property, you could use the following xaml:
  • <telerik:RadDatePicker x:Name="picker" Height="50" Width="200" SelectionChanged="picker_SelectionChanged">
                <telerik:RadDateTimePicker.CalendarStyle>
                    <Style TargetType="telerik:RadCalendar">
                        <Setter Property="IsTodayHighlighted" Value="True" />
                    </Style>
                </telerik:RadDateTimePicker.CalendarStyle>
            </telerik:RadDatePicker>
     
Hope this helps.


Greetings,
George
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

Tags
DatePicker
Asked by
Stephen
Top achievements
Rank 1
Answers by
George
Telerik team
Share this question
or