This question is locked. New answers and comments are not allowed.
I have the following autocomplete :
the problem raises in client side validation which tells following javascript error : (the server side validation is ok)
$3.elements[0] is undefined
<div class="editor-field"> @(Html.Telerik().AutoCompleteFor(model => model.Title) .Name("AutoComplete") .Encode(false) .HtmlAttributes(new { @class = "text-box", type = "text" }) .BindTo(ViewBag.OldCustomersTitles as IQueryable<string>) .AutoFill(false) .HighlightFirstMatch(true) .Filterable(filtering => { filtering.FilterMode(AutoCompleteFilterMode.Contains).MinimumChars(5); }) ) @Html.ValidationMessageFor(model => model.Title) </div>
the problem raises in client side validation which tells following javascript error : (the server side validation is ok)
$3.elements[0] is undefined