This repository was archived by the owner on Dec 14, 2018. It is now read-only.
This repository was archived by the owner on Dec 14, 2018. It is now read-only.
Input tag helper for DateTime should use "datetime-local" instead of deprecated "datetime" #4871
Closed
Description
I'm not an expert, but <input>
tag helper for model with DateTime
type renders as type="datetime"
but it look like that was deprecated in favor of type="datetime-local"
current tag helper:
<input type="datetime" id="Date" name="Date" value="">
it should be:
<input type="datetime-local" id="Date" name="Date" value="">