How to apply validations to WPF datepicker toolkit? I want it to error out if invalid date is selected and in some case I have Arrival and Departure dates, so I want to validate it to see that the arrival date is not later than the departure date.
|
It seems a year above date picker validation was a problem. Anyway, now it works. I am not a WPF specialist, bu I'll try to give you an idea write a validation rule
then you can attach it to datepicker
specify control template when validation error occurs. By default validation error changes border color. I used additional tooltip when mouse is over control.
About 'picker to picker' validation. I know that one can use custom properties in validation rules (see AgeRangeRule in msdn example) Maybe you should use this feature like this
but in order to apply binding you need to make MaxDate a DependencyProperty .. you should definetly ask a guru ;) Instead of highlighting you should consider intercepting the datepicker value change (via some kind of datepicker 'onchange' event) and accept or reject the change. |
||||
|
