I have a date input and I need to select a date. I put a correct date when I choice from the calendar. Suppose to modify this date (31/07/2001) into a date that doensn't have a correct format (31/14/2007) with the key input. I click in the page and the date is updated in (02/03/2008). This isn't the correct beahaviuor because I want to that when the user put a incorrect format date, it doesn't update the input type date but the wrong input doesn't have been modified. I reproduce my problem in stack blitz.
Anyone can help me?
When parsing the date you are using this code :
And you get this date : 2008-03-01T23:00:00.000Z
Then you format the date with this code:
and get : 02-03-2008
First, I would suggest to avoid adding '-' instead of '/', you could do this transformation later on your components or your api service.
And for parsing the date I would simply try :
This will return null for an invalid date so i guess the form will be invalid. Then just check the form validity on your component ;)