This example shows how to configure Telerik ComboBox for ASP.NET MVC to load its data through Ajax requests. Server should return JSON data.

You can bind the combobox to an Action method that will get requested through AJAX, or to an ASMX / WCF web service, using the DataBinding method.

<%= Html.Telerik().ComboBox()
     .Name("ComboBox")
     .DataBinding(binding => binding.Ajax().Select("_AjaxLoading", "ComboBox"))
 %>

You can load whole list of items using the BindTo method or generate it through Items method.

Available settings: