or
@(Html.Kendo().DropDownListFor(m => m.Country) .BindTo(ViewBag.Countries) .DataValueField("CountryCode") .DataTextField("CountryName") .OptionLabel("Select Country"))
@(Html.Kendo().TabStrip()...And the other I do on the Jquery document ready to set the configuration options. I am doing this because I can’t seem to find another way to do this in the html helper. Where should I be setting the configurations options(For instance collapsible and animation)? Example code would be great as I don't see examples for this on your site.

I should have miss something, but what ?Here is mycontrollerpublicclassPlaceModel{publicGuid Id {get;set; }publicstringName {get;set; }publicPlaceModel(){}}End finally, my webpage:namespaceNoolibee.Presentation.Web.SandBox.Controllers{publicclassInventoryController : Controller{//// GET: /Inventory/publicActionResult Inventory(){//Get all places in the databaseIInventoryService serviceRepo = ServiceBusinessFactory.Create<IInventoryService>();List<INV_Place> places = serviceRepo.GetAllPlaces();//Convert the places to a placeModel (for testing purpose)List<PlaceModel> placesModel =newList<PlaceModel>();foreach(INV_Place iteminplaces){placesModel.Add(newPlaceModel() { Id = item.Id, Name = item.Name });}//Return the view with the list of placeModel for the comboboxreturnView(placesModel.AsEnumerable<PlaceModel>());}}}So, the value @Model.Count tells me that there's 1 item, but the combobox is empty.@model IEnumerable<Noolibee.Presentation.Web.SandBox.Models.PlaceModel>@{ViewBag.Title ="Inventory";Layout ="~/Views/Shared/_Layout.cshtml";}<h2>Inventory (size = @Model.Count())</h2><div>@(Html.Kendo().ComboBox().Name("placesDropDownList").DataTextField("Name").DataValueField("Id").BindTo(Model).SelectedIndex(0))</div>