Hi,
Thanks for the information. We looked into the issue and we are still considering how or whehter to change it. The root of the problem is that you can programmatically set SelectedDate to be outside of MinValidDate and MaxValidDate. For example:
Code: C#
DatePicker1.SelectedDate = DateTime.Today;
DatePicker1.MinValidDate = DateTime.Today.AddDays(1);
The DatePicker will take it literally as it is without adjusting SelectedDate automatically. The reason that it was implemented this way is that we were concern about implicit operations on our side confuses user. However in your case what the user sees is not what the real value of the DatePicker. So that is certainly a concern as well.
Thanks