We are using autocomplete feature. We see that the AJAX call to get the data is successful and even the count is correct. But we don't see the list on the client.
In firebug, we see the response stream has the JSON data.
@(Html.Telerik().AutoComplete()
.Name("AutoCompletemspeclty")
.Value(@Model.mspeclty)
.DataBinding(binding => binding.Ajax()
.Select("GetSpecialty", "Utility") )
.AutoFill(true)
.HighlightFirstMatch(true)
)
Note: We have registered all the required scripts in the master page.
@(Html.Telerik().ScriptRegistrar().Globalization(true)
.DefaultGroup(group => group
.Add("jquery-1.7.1.min.js")
.Add("telerik.common.min.js")
.Add("telerik.list.min.js")
.Add("telerik.autocomplete.min.js")
.Combined(true).Compress(true))
.jQuery(false))
The same code works in another project. This must be simple but we have spend a day figuring this one out.