Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
3806
datecolumn does not show validation error on propertychange
posted

I am using DateColumn which has a Binding to my property in VM (which implements IDataErrorInfo). When I change the date, the red border does not show up. It only shows on lost focus of date control. How can change it to validate (display red border) on property change?

This is I am using right now : <ig:DateColumn HeaderText="Created" Key="CreatedDate" EditorDisplayBehavior="EditMode" />

I can use TemplateColumn to make to property binding on property change: {Binding CreatedDate, ValidatesOnDataErrors=True, UpdateSourceTrigger=PropertyChanged}.
But can I do the same thing with DateColumn? Please help.