I'm trying to use dx-date-box for date inputs but I can't make it validate required values on my form:
<dx-date-box placeholder="Request Date" required="true"
formControlName="request_date" type="date" validationMessageMode="always" invalidDateMessage="{{VALIDATION.DATE_INVALID}}">
</dx-date-box>
Invalid date validation is working and it shows the message, but it wont to validate required value and doesn't show required error. I'm not sure how to achieve that behaviour.