v6.5.1
Steps:

Expected: The date is rejected or auto-corrected upon save
Actual: The incorrect date is saved
Sit I am working on this by adopting the appraoch of autocorrection
If the page is reloaded, a valid date should show up. The field is just not getting updated upon submit because it happens over AJAX. @shaharyar-shamshi a good way to solve this would be to ride on the existing resolved time fields in the JSON response, introduced in #8687. The frontend code for updating the fields dynamically upon submit is already written (originally meant for ambiguous date times).
@whipermr5 sir actually I am introduction a the method in Timehelper to match the day and date if they are wrong then I am changing the day to match it with the date
I investigated on this issue and the problem lies with invalid datetime (from user input) being parsed to null upon conversion to LocalDateTime format at the backend, thus not further processed.
As mentioned by @whipermr5 , the update to the frontend happens over AJAX thus a page refresh would not persist the invalid datetime and would show the date back to the original datetime before modification.
I was thinking of reflecting the original datetime back in the field upon submit and making the status message more verbose to include "...... Invalid datetime fields are reset to the original datetime field."
@damithc Your thoughts on this?
I was thinking of reflecting the original datetime back in the field upon submit and making the status message more verbose to include "...... Invalid datetime fields are reset to the original datetime field."
Sounds good @tanhengyeow It's good if we can also indicate which exact field was reverted
@damithc How's the proposed changes?
Success scenario (same as before):

Invalid scenario:

Invalid scenario screenshot:

P.S A gibberish date input has the same behavior of an invalid date input.
I think using a green status message for the invalid case is not suitable. Either make the whole thing orange or show two messages, one orange, one green?
Is it possible to show what was the invalid date entered, for the user's reference? It's ok if that takes too much work.
@damithc Yup, doable. Here's the new behavior:


Looks good. May be phrase it as The following values were found to be invalid and the original values have been retained instead (or something like that)
Resolved in V7.