I have a reactive form and I get the wrong date in the formControlName ( I receive the date chosen + 1 day )
This is the component html :
<form id="f"class="pt-2"[formGroup]="workAreaForm">
<kendo-datepicker formControlName="startDate" [format]="'dd/MM/y'" placeholder="DD/MM/YYYY"
></kendo-datepicker>
</form>
//And when I console workAreaForm.get('startDate').value it gives me the wrong date !!