New to Telerik UI for ASP.NET MVCStart a free 30-day trial

Ajax Binding

Updated on Nov 4, 2025

In this article, you will learn how to set up the DropDownList component to load its options from a database.

You can configure the DropDownList for Ajax binding to the Northwind Products table, which uses LINQ to SQL. The DropDownList component expects to receive a collection of items from the specified remote endpoint.

The ToDataSourceResult() extension method modifies the structure of the result, and the component is not able to bind to it. In this case, either return a simple array of data as JSON or define a custom DataSource with Schema() configuration that specifies the field that holds the collection of data items in the response.

  1. Create an action method which renders the view.

    Razor
     public ActionResult Index()
     {
         return View();
     }
  2. Create a new action method and pass the Products table as JSON result.

    Razor
     public JsonResult GetProducts()
     {
         NorthwindDataContext northwind = new NorthwindDataContext();
    
         return Json(northwind.Products, JsonRequestBehavior.AllowGet);
     }
     
  3. Add an Ajax-bound DropDownList.

Razor
    @(Html.Kendo().DropDownList()
        .Name("productDropDownList") // The name of the DropDownList is mandatory. It specifies the "id" attribute of the widget.
        .DataTextField("ProductName") // Specify which property of the Product to be used by the DropDownList as a text.
        .DataValueField("ProductID") // Specify which property of the Product to be used by the DropDownList as a value.
        .DataSource(source =>
        {
                source.Read(read =>
                {
                    read.Action("GetProducts", "Home"); // Set the Action and Controller names.
                })
                .ServerFiltering(true); // If true, the DataSource will not filter the data on the client.
        })
        .SelectedIndex(0) // Select the first item.
     )

By following this example, you will be able to populate the ASP.NET Core DropDownList from a database, and the component will visualize the data.

See Also

In this article
See Also
Not finding the help you need?
Contact Support