Here is the markup:
<InputDate @bind-Value="@EndTime" Type="InputDateType.DateTimeLocal" bind-Value:format="@DateTimeFormat" style="width:250px" />The DateTimeFormat = "dd/MM/yyyy HH:mm".
When the control is displayed on the page while EndTime is null,it displays "mm/dd/yyyy --:-- --" as a placeholder. I want the control to be empty when the bound value is null. How can I achieve this? There isn't a placeholder property on the control.
Another bugaboo is that the "AM/PM" is used even though the format calls for a 24 hour time.
