Planned
Last Updated: 21 Aug 2024 12:20 by ADMIN
Scheduled for 2024 Q4 (Nov)
Brian
Created on: 19 Jan 2023 12:54
Category: Grid
Type: Feature Request
17
DateOnly type support
The DateOnly type has been introduced in .NET 6 but isn't supported by Telerik DatePickers although Telerik is compatible with .NET 7 now.

I'd like DateOnly support to be introduced to Telerik UI for ASP.NET Core because my Grid uses that type and issues occur in the Grid's PopUp and InLine editing fields that are bound to DateOnly fields.
2 comments
Peter
Posted on: 06 Aug 2024 09:14

Please add support for this. DateTimePickerFor() cannot be used, same applies to TimePickerFor().

Without this support it makes it hard to use the correct data types both in C# and in SQL Server.

Mandeep
Posted on: 22 Feb 2023 15:14

Have you tried using [UIHint] with DateOnly? Something like

[DataType(DataType.Date)]

public DateOnly EffectiveDate { get; set; }