or
@(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>
@model Core.Country[]
Can someone tell me, am I missing a using directive or an assembly reference?
Many thanks in advance.
Sorted: The extension method 'Data' is on .Read(...) not the datasource as the documentation on Ajax Binding: "Pass Additional Data to Action Method" would have you believe.
K.
<!DOCTYPE html>
<html>
<head>
<title>@ViewBag.Title</title>
<link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="@Url.Content("~/Content/kendo.common.min.css")">
<link href="@Url.Content("~/Content/kendo.dataviz.min.css")" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="@Url.Content("~/Content/kendo.default.min.css")">
<script src="@Url.Content("~/Scripts/jquery.min.js")"></script><br>
<script src="@Url.Content("~/Scripts/kendo.web.min.js")"></script>
@*<script src="@Url.Content("~/Scripts/kendo.aspnetmvc.min.js")"></script>*@
<script src="@Url.Content("~/Scripts/kendo.dataviz.min.js")"></script>
<script src="@Url.Content("~/Scripts/jquery-ui-1.8.11.min.js")" type="text/javascript"></script>
</head>
<body>
@RenderBody()
</body>
</html>