I'm simply trying to fire an event, and it doesn't work. (I'm starting to feel like Kendo is a beta that we pay to test.)
Markup:
@(Html.Kendo().AutoCompleteFor(m => m.EditName)
.Events(e => e.Select("alert('test')"))
.DataSource(source =>
source.Read(read => read.Action("GetUsers", "Administration"))
.ServerFiltering(true)))
Here's what happens. It fires the alert box upon page load, and never again. Also, it doesn't matter what the event is. I can make the event "Select", "Change", "Open", "Close".... it always fires once upon page load, and never again.
I tried using the Latest Internal build... did not fix it. I just want to fire an event upon Select, not upon page load. Please advise what I'm doing wrong. Thanks.