Hi telerik,
I have 2 raddatepicker which are STARTDATE and ENDDATE. My business logic constraint is START DATE must less or equal to END DATE. Now, I'm using SelectableDateStart and SelectableDateEnd property to validate selected date and it works fine. My problem is this method can't handle if user input Date by key-in.
How to disable "Key-in" function ?
My XAML :
Please give me some advice , thank you
SweNz
I have 2 raddatepicker which are STARTDATE and ENDDATE. My business logic constraint is START DATE must less or equal to END DATE. Now, I'm using SelectableDateStart and SelectableDateEnd property to validate selected date and it works fine. My problem is this method can't handle if user input Date by key-in.
How to disable "Key-in" function ?
My XAML :
<
telerik:RadDatePicker
x:Name
=
"startDate"
SelectableDateEnd
=
"{Binding ElementName=endDate, Path=SelectedDate }"
/>
<
telerik:RadDatePicker
x:Name
=
"endDate"
SelectableDateStart
=
"{Binding ElementName=startDate, Path=SelectedDate }"
/>
Please give me some advice , thank you
SweNz