BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
Hello, I come across the issue with the dateTimePicker component.
The filter is not displaying the format correctly.
In case when I specified the Format of yyyy-MM-dd HH:mm:ss I need to display values as 16:00:00 not 4:00 PM
Please see code and screenshot below:
@using Syncfusion.Blazor.Calendars
<SfDateTimePicker TValue="DateTime?" Format="yyyy-MM-dd HH:mm" @bind-Value="@Value"></SfDateTimePicker>
<SfDateTimePicker TValue="DateTime?" Format="yyyy-MM-dd hh:mm:ss" @bind-Value="@Value"></SfDateTimePicker>
<SfDateTimePicker TValue="DateTime?" Format="yyyy-MM-dd HH:mm:ss" @bind-Value="@Value"></SfDateTimePicker>
<SfDateTimePicker TValue="DateTime?" Format="yyyy-MM-dd hh:mm:ss tt" @bind-Value="@Value"></SfDateTimePicker>
<SfDateTimePicker TValue="DateTime?" Format="yyyy-MM-dd hh:mm tt" @bind-Value="@Value"></SfDateTimePicker>
@code {
public DateTime? Value { get; set; } = new DateTime(2022, 12, 11, 11, 30, 00);
}
Hi Pawel Szpytma,
Thank you for bringing the issue regarding the DateTimePicker component to our attention.
Upon reviewing your query, it seems that the filter is not displaying the format correctly as per your requirements. You mentioned that when you specify the format as "yyyy-MM-dd HH:mm:ss", you expect the values to be displayed as "16:00:00" instead of "4:00 PM".
To address your concern, we have adjusted the code snippet as follows:
<SfDateTimePicker TValue="DateTime?" Format="yyyy-MM-dd HH:mm:ss" TimeFormat="HH:mm" @bind-Value="@Value"></SfDateTimePicker>
@code { public DateTime? Value { get; set; } = new DateTime(2022, 12, 11, 11, 30, 00); } |
In the provided code snippet, we have used the "TimeFormat" property to specify the time format as "HH:mm", which ensures that the time is displayed in 24-hour format, meeting your requirement.
For further reference and detailed information about the DateTimePicker component, you can refer to the documentation: DateTime Picker Documentation.
You can also explore a live demo showcasing different date and time formats by visiting the following link: DateTime Picker Demo.
We hope this solution resolves your issue. If you have any further questions or concerns, please don't hesitate to reach out.
Hello Kokila,
Thank you for coming back to me.
I have tried to use TimeFormat before and it did not help previously.
After seeing your answer I tried to reproduce this same error as I come before using TimeFormat param but luckly I did not come on that issue anymore,
Thanks again!
Hi Pawel,
We are moving this as solved. Please get back to us for assistance in the future.
Regards,
Shereen