[Solved] DateInput appears broken in Telerik 3.1.0

1 Answer 98 Views
DateInput
Missing User
Missing User asked on 11 Mar 2022, 11:46 AM

Since upgrading from Telerik 3.0.1 to 3.1.0, DateInput controls no longer bind to properties for me. 

The following works in 3.0.1 but not 3.1.0

@page "/TestPage"

<p>Message: @Message</p>
<p>MyDate: @MyDate</p>

<TelerikTextBox @bind-Value="Message"></TelerikTextBox>
<TelerikDateInput @bind-Value="MyDate" Format="dd/MM/yyyy"></TelerikDateInput>

@code {
    public string Message { get; set; }
    public DateTime MyDate { get; set; }
}


Marin Bratanov
Telerik team
commented on 12 Mar 2022, 06:36 PM

Double check that the JS Interop file matches the version if you are using the CDN, and that you have no JS errors, try cleaning your build folders (bin and obj) and clearing the browser cache. If the issue persists, I recommend opening a ticket.

1 Answer, 1 is accepted

Sort by
0
Missing User
answered on 16 Mar 2022, 03:56 PM
Working now thanks
Tags
DateInput
Asked by
Missing User
Answers by
Missing User
Share this question
or