New Release! Telerik and Kendo UI are part of Progress product portfolio. The following example demonstrates the Angular DropDownList in action. Is it OK to ask the professor I am applying to for a recommendation letter? This DropDownList example is part of a unique collection of hundreds of jQuery demos, with which you can see all Kendo UI for jQuery components and their features in action. Telerik and Kendo UI are part of Progress product portfolio.

@(Html.Kendo().Grid().Name("EmployeesGrid").Columns(columns => {


columns.Bound(e => e.FirstName).Title("First Name");


columns.Bound(e => e.LastName).Title("Last Name");


columns.Bound(e => e.CompanyId).EditorTemplateName("CompaniesList").Title("Company").ClientTemplate("#:CompanyName#");


columns.Command(command =>{ command.Edit(); });


})


.ToolBar(toolbar => toolbar.Create())


.Editable(editable => editable.Mode(GridEditMode.InLine))


.DataSource(dataSource => dataSource.Ajax()


.Events(events => events.Error("error_handler"))


.Model(model => model.Id(e => e.Id))


.Create(update => update.Action("CreateEmployee","Home"))


.Read(read => read.Action("ReadEmployees","Home"))


.Update(update => update.Action("UpdateEmployees","Home"))))

, and include the following JavaScript code in a script tag