Completed
Last Updated: 02 Jun 2022 08:22 by ADMIN
Release 3.4.0
RafaƂ
Created on: 10 Feb 2022 11:23
Category: DatePicker
Type: Bug Report
3
By setting the Min and Max attributes to dates in the same month and past or present years will not allow you to select a different year with the "Year" navigation button

The problematic setup:

<TelerikDatePicker Min="@Min" 
                   Max="@Max" 
                   @bind-Value="@selectedDate">
</TelerikDatePicker>


@code  {
    public DateTime Max = new DateTime(2021, 3, 29);
    public DateTime Min = new DateTime(2021, 3, 1);
    private DateTime? selectedDate;
}

0 comments