I have XAML code for the view like this. In the view model, I have two properties, SelectedCloseDate and CloseDate, and they are the same initially. The XamDateTimeEditor is populated with SelectedCloseDate's DateTime value initially, but the ValueConstraint cannot be binded with the CloseDate properties. If I replace the "{Binding CloseDate}" to just "11/24/2016", then the MaxInclusive constraint will work. Could you guys provide a workaround for that, maybe some sort of converter? Shouldn't something basic like this should be built in already?
Hello Fan,ValueContsraint is not a visual element and could not be data bound. You can create a converter to set the MaxInclusive property as Andrew has suggested in this forum thread: http://ko.infragistics.com/community/forums/p/44883/285224.aspx#285224.Let me know if you need additional assistance.