DateTimePicker filter is not displaying format correctly

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: 

Image_5219_1707234853004


@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);
}

3 Replies 1 reply marked as answer

KP Kokila Poovendran Syncfusion Team February 7, 2024 09:52 AM UTC

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.



Marked as answer

PS Pawel Szpytma February 8, 2024 12:57 PM UTC

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!



SS Shereen Shajahan Syncfusion Team February 9, 2024 06:48 AM UTC

Hi Pawel,

We are moving this as solved. Please get back to us for assistance in the future.

Regards,

Shereen


Loader.
Up arrow icon