The SelectedDateStart needs to be bound to a date value set by another DatePicker. Can I get an example of binding the date in a string in C# to the xaml datePicker SelectedDateStart Property? This is what i have so far for the xaml
<telerik:RadDatePicker IsInputRestrictedToSelectableDates="True"
SelectableDateStart="{Binding Path=SetDepartureStartDate,Mode=TwoWay}"
SelectedDate="{Binding Path=ActualDepartureDateLocal, Mode=TwoWay}"
IsEnabled="{Binding Path=IsActualDepartureDateTimeEditable}"
TabIndex="7" >
</telerik:RadDatePicker>