Hi guys
If I use
Html.Kendo().DatePickerFor(mdl => mdl.SomeDate).Events(c => c.Change(...))
I get a problem in Chrome 80, in that it appears blank (it does have a value in the HTML) until I choose another date from the dropdown (and then it shows)
If I use
Html.Kendo().DatePicker().Name(...).Value(Model.SomeDate).HtmlAttributes(
new
{ type =
"text"
}).Events(c => c.Change(...))
Then it looks OK but doesn't fire the events when changed with the keyboard/dropdown
Any pointers? (and alas I can't upgrade either; seems the stuff in nuget doesn't target 4.6.1, only 4.5.2 or core; using too recent a one (anything after v2016.2.607) installs practically all of .net core as dependency, and anything before it wont install because of missing dependencies or target framework issues