Getting Started with ASP.NET MVC Wrapper for KendoUI

 This article explains how to use or get started with the ASP.NET MVC Wrapper for Kendo UI.

In this article I will cover:

      · How to use the ASP.NET MVC wrapper

      · Adding the dropdown to a page

      · Populating the dropdown with remote data

Requirements:

      Visual Studio

      At least MVC version 3

Getting into the core

Download and install the Kendo UI for ASP.NET MVC VsExtension

Create a Telerik ASP.NET MVC project as in the following:

  • Open Visual Studio 2012 and create a new project.
  • Select "File" -> "New" -> "Project...".
  • Select Web in the installed templates and click Telerik ASP.NET MVC Application.
  • Provide the name for the project and click OK as in Figure 1.
  
         
        Figure 1
 
 The Project Configuration wizard will open, from this wizard we can choose the ASP.NET MVC version, View Engine and the UI theme as shown in Figure 2
   
    
  
       Figure 2
 

   Now Visual Studio creates a project by copying the JavaScript libraries and CSS files with all the necessary configuration.

    You can observe the Kendo UI related CSS and JavaScript files are added to the project as shown in Figures 3 & 4.
 
     
 
      Figure 3 
 
  
 
         Figure 4 
 
Just open the _Layout.cshtml page and have a look, you can observe all the necessary CSS and JavaScript file have been added to the page as shown in Figure 5.
 
    
          
            Figure 5
 

 By default you will have a Kendo UI panel bar in Home view as shown in Figure 6.

    
 
          Figure 6
 
                                                                                 

                                                Adding dropdown to a page

 

The Kendo UI Wrappers are HTML helpers with a fluent API, in other words each method returns the instance of the widget.

Here is the code to implement the static dropdownlist in the Home view.

  1. @{  
  2.     var Item = new List<string>()  
  3.     {  
  4.         "item1","item2","item3"  
  5.     };  
  6. }  
  7. @Html.Kendo().DropDownList().Name("Items").BindTo(@Item)  
Run the application.
 
The results in a browser are as shown in Figure 7.
 
       
         Figure 7
    

Populating the dropdown list using remote data source

Let’s start by adding the Entity Framework to the project.
 
I am using the Entity Framework with Database First approach, so the Entity Framework builds default model classes and context classes.
 
My database schema is as in Figure 8.
         
          
        
               Figure 8
 
My table structure is as in Figure 9.
 
            
      
                Figure 9 
 
Right-click on the Controller folder then select Add, click Controller and create an Empty controller class and name it CountryController.cs.
 
Write the following code in CountryController.cs:
 
  1. public class CountryController : Controller  
  2.     {  
  3.         testEntities _context = new testEntities();  
  4.         // GET: Country  
  5.         public ActionResult Index()  
  6.         {  
  7.             return View(_context.tbl_country.ToList());  
  8.         }  
  9.     }  
Create a view for the Country Controller.
 
Write the following code in the Country view:
 
  1. @{  
  2.     ViewBag.Title = "Index";  
  3.     Layout = "~/Views/Shared/_Layout.cshtml";  
  4. }  
  5.   
  6. <h2>Kendo DropDownList with Remote binding</h2>  
  7. @model IEnumerable<TelerikMvcApp1.tbl_country>  
  8.   
  9. @(  
  10.  Html.Kendo().DropDownList().Name("kdropdownlist")  
  11.                    .DataTextField("Country_Name")  
  12.                    .DataValueField("Country_ID")  
  13.                .BindTo(Model)  
  14.                .OptionLabel("Select a Country")  
  15. )  
The following is the result in a browser:
 
         
 
          Figure 10 
 
Conculsion
 
From this article we learned how to use or get started with the ASP.NET MVC Wrapper for Kendo UI.
         
I hope you have enjoyed this article, Thank you.
          
Happy Coding.


Similar Articles