Live Chat Icon For mobile
Live Chat Icon

Why is the DateTime 24-hours conversion to AM/PM is not working?

You have to use the format-value string “yyyy-MM-ddTHH:mm” to work with AM/PM conversion properly.

<input type="datetime-local" id="Test" name="Test" class="form-control" @bind="@testDateTime" format-value="yyyy-MM-ddTHH:mm" />

@code {
    DateTime testDateTime { get; set; } = new DateTime(2019, 12, 15, 16, 45, 15);
}

Refer to this thread for more information.

Share with

Related FAQs

Couldn't find the FAQs you're looking for?

Please submit your question and answer.