or


@(Html.Kendo().Grid(Model) .Name("MyGrid") .Columns(columns => { columns.Bound(m => m.Name); columns.Bound(m => m.Title); columns.Bound(m => m.Email); }) .Pageable() .Sortable())public class Address { public Guid? AddressId { get; set; } [Required(ErrorMessage="City is required")] [Display(Name = "City")] [MaxLength(25)] public string City { get; set; } public bool IsDefault { get; set; } [Required] [Display(Name = "Address")] [MaxLength(50)] public string Line1 { get; set; } [Display(Name = "")] [MaxLength(50)] public string Line2 { get; set; } [Required] [Display(Name = "Name")] [MaxLength(25)] public string Name { get; set; } [Required] [MaxLength(2)] public StateDropdownViewModel State { get; set; } [Display(Name = "Zip Code")] [MaxLength(10)] public string ZipCode { get; set; } }@using(Ajax.BeginForm("PersistShippingAddress", "Order", new AjaxOptions() { HttpMethod = "post" }))
{
<tr> <td>City:</td> <td> @Html.EditorFor(model => model.ShippingAddress.City) @Html.ValidationMessageFor(model => model.ShippingAddress.City) </td></tr>
}<head> <title>@ViewBag.Title - My Telerik MVC Application</title> <link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" /> <link href="@Url.Content("~/Content/kendo/2014.2.909/kendo.common.min.css")" rel="stylesheet" type="text/css" /> <link href="@Url.Content("~/Content/kendo/2014.2.909/kendo.mobile.all.min.css")" rel="stylesheet" type="text/css" /> <link href="@Url.Content("~/Content/kendo/2014.2.909/kendo.dataviz.min.css")" rel="stylesheet" type="text/css" /> <link href="@Url.Content("~/Content/kendo/2014.2.909/kendo.metro.min.css")" rel="stylesheet" type="text/css" /> <link href="@Url.Content("~/Content/kendo/2014.2.909/kendo.dataviz.metro.min.css")" rel="stylesheet" type="text/css" /> <script src="@Url.Content("~/Scripts/kendo/2014.2.909/jquery.min.js")"></script> <script src="@Url.Content("~/Scripts/kendo/2014.2.909/kendo.all.min.js")"></script> <script src="@Url.Content("~/Scripts/kendo/2014.2.909/kendo.aspnetmvc.min.js")"></script> <script src="@Url.Content("~/Scripts/kendo.modernizr.custom.js")"></script></head><script src="@Url.Content("~/Scripts/jquery.validate.js")"></script>(function ($) { var defaultDuration = 200; var expander = kendo.ui.Widget.extend({ init: function (element, options) { kendo.ui.Widget.fn.init.call(this, element, options); this._Render(); }, options: { name: "Expander", title: "", isExpanded: true }, IsExpanded: false, Expand: function (duration) { var $this = this; if ($this.contents) { if (duration == null) { duration = defaultDuration; } $this.contents.show(duration, function () { $this.IsExpanded = true; }); } if ($this.button) { $this.button.find("span") .removeClass("k-i-arrowhead-s") .addClass("k-i-arrowhead-n"); } }, Collapse: function (duration) { var $this = this; if ($this.contents) { if (duration == null) { duration = defaultDuration; } $this.contents.hide(duration, function () { $this.IsExpanded = false; }); } if ($this.button) { $this.button.find("span") .removeClass("k-i-arrowhead-n") .addClass("k-i-arrowhead-s"); } }, Toggle: function () { if (this.IsExpanded) { this.Collapse(); } else { this.Expand(); } }, _Render: function () { this._MutateDom(); this._SetInitialExpandState(); }, _MutateDom: function () { if (($(this.element).prop("tagName") || "").toString().toUpperCase() == "FIELDSET") { this._MutateFromFieldSet(); } else { this.contents = $(this.element).attr("data-role", "expanderContents"); this.fieldSet = $("<fieldset>").attr("style", this.contents.attr("style")); this.contents.removeAttr("style"); this.contents.wrap(this.fieldSet); this.fieldSet = this.contents.parent(); this.legend = $("<legend>").text(this.options.title); this.fieldSet.prepend(this.legend); } this._AddExpanderButton(); }, _MutateFromFieldSet: function () { this.fieldSet = $(this.element); var children = this.fieldSet.find(">:not(legend)"); this.contents = $("<div>").attr("data-role", "expanderContents"); this.fieldSet.append(this.contents); this.contents.append(children); this.legend = this.fieldSet.find(">legend"); if (this.legend.length == 0) { this.legend = $("<legend>").text(this.options.title); this.fieldSet.prepend(this.legend); } }, _AddExpanderButton: function () { var expanderRadius = 12; var icon = $("<span>") .addClass("k-icon") .css({ "position": "relative", "top": "-5px", "left": "-4px" }); this.button = $("<button>") .addClass("k-button") .css({ width: (expanderRadius * 2) + "px", height: (expanderRadius * 2) + "px", "border-radius": expanderRadius + "px", "margin-right": this.legend.text() ? "4px" : 0 }) .click($.proxy(this.Toggle, this)); this.button.append(icon); this.legend.prepend(this.button); }, _SetInitialExpandState: function () { if (this.options.isExpanded) { this.Expand(0); } else { this.Collapse(0); } } }); kendo.ui.plugin(expander);})(jQuery);
<li ng-repeat="game in tabSchedule(**need tab here**)">{{game.date}}</li><li ng-repeat="game in tabSchedule($('#tabs li.k-item.k-*****')">{{game.date}}</li>