Hi
I have a project with blazor wasm using version 19.3.0.48
The problem: Time always show 12:00:00 a.m., no matter what time I capture.
I tested with many formats like
Format="dd/MM/yyyy hh:mm:ss tt"
Please help!
My razor code is
<SfDateTimePicker Placeholder="Selecciona fecha y hora" Locale="es-MX" Format="dd/MM/yyyy hh:mm:ss tt"
TValue="DateTime?" Enabled="data.value.habilitado"
@bind-Value="@(data.value.valorfecha)">
<DateTimePickerEvents TValue="DateTime?" ValueChange="OnDateChanged" />
</SfDateTimePicker>