This question is locked. New answers and comments are not allowed.
Hello Support,
i am using RadDatePicker in a PopUp, while binding a Nullable<DateTime> Property of my ViewModel to it.
This is what i have so far:
Now, if i set the "DisplayMode" to "Standart" the Value binding works.
On "inline" the control is only showing the current date, why won't it bind?
Thanks!
i am using RadDatePicker in a PopUp, while binding a Nullable<DateTime> Property of my ViewModel to it.
This is what i have so far:
<telerikInput:RadDatePicker MaxHeight="180" HorizontalAlignment="Stretch" x:Name="DateFrom" ItemLength="100" Value="{Binding CurrentDate}" DisplayMode="Inline" > <telerikInput:RadDatePicker.SelectorHeaderTemplate> <DataTemplate> <TextBlock Text="Date from" Style="{StaticResource BaselineTextStyle}" Foreground="White" Margin="10,29,0,0" Padding="0,0,0,10"/> </DataTemplate> </telerikInput:RadDatePicker.SelectorHeaderTemplate> <telerikInput:RadDatePicker.SelectorBackgroundStyle> <Style TargetType="Border"> <Setter Property="BorderThickness" Value="0"/> </Style> </telerikInput:RadDatePicker.SelectorBackgroundStyle> </telerikInput:RadDatePicker>Now, if i set the "DisplayMode" to "Standart" the Value binding works.
On "inline" the control is only showing the current date, why won't it bind?
Thanks!