This question is locked. New answers and comments are not allowed.
When the page loads the autocomplete textbox shows the value 'System.String[]' .
// simple List<string>
List<string> firstName = new List<string>();
firstName.Add("Bob");
firstName.Add("Bill");
firstName.Add("Denny");
firstName.Add("Dennis");
ViewData["firstname"] = firstName.ToArray();
// in view
<% Html.Telerik().AutoComplete()
.Name("FirstName")
.BindTo((IEnumerable<string>)ViewData["firstname"])
.Filterable(f => f.MinimumChars(2).FilterMode(AutoCompleteFilterMode.StartsWith))
.HighlightFirstMatch(true)
.AutoFill(true)
.HtmlAttributes(new { @style = "width:200px;" })
.Render(); %>
// simple List<string>
List<string> firstName = new List<string>();
firstName.Add("Bob");
firstName.Add("Bill");
firstName.Add("Denny");
firstName.Add("Dennis");
ViewData["firstname"] = firstName.ToArray();
// in view
<% Html.Telerik().AutoComplete()
.Name("FirstName")
.BindTo((IEnumerable<string>)ViewData["firstname"])
.Filterable(f => f.MinimumChars(2).FilterMode(AutoCompleteFilterMode.StartsWith))
.HighlightFirstMatch(true)
.AutoFill(true)
.HtmlAttributes(new { @style = "width:200px;" })
.Render(); %>