From 4bd617d9270fa4cbcf1d2f1452d53b15185953c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20=C3=87etin?= <92744169+mehmetcetin01140@users.noreply.github.com> Date: Thu, 25 Jan 2024 11:25:23 +0300 Subject: [PATCH] Fixed #14542 - Calendar | Validation is triggered before calendar is even touched --- src/app/components/calendar/calendar.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/components/calendar/calendar.ts b/src/app/components/calendar/calendar.ts index ddca239abed..83426ba574e 100755 --- a/src/app/components/calendar/calendar.ts +++ b/src/app/components/calendar/calendar.ts @@ -1576,6 +1576,9 @@ export class Calendar implements OnInit, OnDestroy, ControlValueAccessor { } } } + else if (this.dataType === 'string') { + formattedValue = date; + } return formattedValue; }