All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
@Html.DropDownList(
"id", new SelectList(Model.Accounts, "Index", "AccountFriendlyName"), new { id = "accountList", @class = "DropDownListWidth" })
$(
'.DropDownListWidth').width('auto');
@(Html.Kendo().DropDownList() .Name("Products") .HtmlAttributes(new { style = "width:85px;text-aligh:left" }) .DataTextField("Text") .DataValueField("Value") .IgnoreCase(true) .DataSource(source => { source.Read(read => { read.Action("GetProducts", "Home"); }); }) )