Hi, I checking DateTimePicker control, and I'm not sure if it's bug of feature.
I have picker control bound to nullable DateTime property.
DefaultDisplayDate is bound to DateTime.Now, for help select date in spinner when selectedDate is null.
But in such situation select today date from spinner not change anything, I suppose that date change event not fire.
01.
<
telerikInput:RadDateTimePicker
Grid.Row
=
"7"
Grid.Column
=
"1"
02.
x:Name
=
"dtxProdDate"
03.
PlaceholderLabelStyle
=
"{StaticResource PlaceholderLabelStyle}"
04.
DisplayLabelStyle
=
"{StaticResource DisplayLabelStyle}"
05.
TabStripItemStyle
=
"{StaticResource TabStripItemStyle}"
06.
SelectedDate
=
"{Binding TestObj.NullableProdDate}"
07.
DisplayStringFormat
=
"yyyy-MM-dd"
08.
SpinnerFormatString
=
"yyyy-MM-dd"
09.
DefaultDisplayDate
=
"{Binding TodayDate}"
10.
Placeholder
=
"Select date..."
/>