or

function autoComplete_selected(arg) { var value = this.value(); var grid = $("#GridField").data('kendoGrid'); if (value) { grid.dataSource.filter({ field: "SalonName", operator: "contains", value: value }); } else { grid.dataSource.filter({}); }} // // Filter by ComboBox function selectFilterComboBox(arg) { var grid = $("#GridField").data('kendoGrid'); var dataItem = this.dataItem(arg.item.index()); if (dataItem.Value != null) { grid.dataSource.filter({ field: "StatusId", operator: "eq", value: parseInt(dataItem.Value) }); } else { grid.dataSource.filter({}); }}Menu items #1 "Admin Home" and #5 "Help" work fine, but #2, 3 & 4 with submenus are not expanding.
@(Html.Kendo().Menu().Name("AdminMenu").OpenOnClick(true).Items(items =>{ items.Add().Text("Admin Home") .ImageUrl(Url.Content("~/Content/icons/baseball.png")) .HtmlAttributes(new { style = "width:170px" }) .ImageUrl("~/Content/Icons/ajax.png") .Action("Index", "Admin"); items.Add().Text("Manage") .ImageUrl(Url.Content("~/Content/icons/golf.png")) .HtmlAttributes(new { style = "width:170px" }) .Items(children => { children.Add().Text("Donors").ImageUrl("~/Content/Icons/rep.png").Action("ManageDonors", "Admin"); children.Add().Text("Recipients").ImageUrl("~/Content/Icons/sitefinity.png").Action("ManageRecipients", "Admin"); children.Add().Text("Friends").ImageUrl("~/Content/Icons/test.png").Action("ManageFriends", "Admin"); children.Add().Text("Admin Guys").ImageUrl("~/Content/Icons/win.png").Action("ManageAdmin", "Admin"); children.Add().Text("Password Reset").ImageUrl("~/Content/Icons/wpf.png").Action("PasswordReset", "Admin"); }); items.Add().Text("Marketing") .ImageUrl(Url.Content("~/Content/icons/golf.png")) .HtmlAttributes(new { style = "width:170px" }) .Items(children => { children.Add().Text("Email").ImageUrl("~/Content/Icons/rep.png").Action("ManageFriends", "Admin"); children.Add().Text("Newsletter").ImageUrl("~/Content/Icons/sitefinity.png").Action("Newsletter", "Admin"); children.Add().Text("Announcements").ImageUrl("~/Content/Icons/test.png").Action("Announcements", "Admin"); children.Add().Text("New Members").ImageUrl("~/Content/Icons/win.png").Action("NewMembers", "Admin"); children.Add().Text("Current Web Site").Url("http://www.life-renewal.org"); }); items.Add().Text("My Mail") .ImageUrl(Url.Content("~/Content/icons/golf.png")) .HtmlAttributes(new { style = "width:170px" }) .Items(children => { children.Add().Text("Email").ImageUrl("~/Content/Icons/rep.png").Action("MyMail", "Admin"); children.Add().Text("Tasks").ImageUrl("~/Content/Icons/sitefinity.png").Action("MyTasks", "Admin"); children.Add().Text("Calendar").ImageUrl("~/Content/Icons/test.png").Action("MyCalendar", "Admin"); }); items.Add().Text("Help") .Action("Help", "Admin") .HtmlAttributes(new { style = "width:170px" }) .ImageUrl("~/Content/Icons/wpf.png");}))@using Kendo.Mvc.UI @{ var addressList = Model.DataList as List<Intelli.Data.Parties.EFDAL.Entity.GeoAddress>; } @(Html.Kendo().Grid(addressList) .Name("GridPartyGeoAddresses") .Columns(columns => { columns.Bound(p => p.ID).Title("ID").Hidden(true); columns.Bound(p => p.Address).Title("Address").Width(160); columns.Bound(p => p.Region).Title("Region").Width(80); columns.Bound(p => p.Zipcode).Title("Zipcode").Width(80); columns.Command(commands => commands .Custom("btnviewgeoaddress") .Text("View") .Click("viewgeoaddress") .HtmlAttributes(new { style = "text-align: center" })); columns.Command(commands => commands .Custom("btndeletegeoaddress") .Text("Remove") .Click("deletegeoaddress") .HtmlAttributes(new { style = "text-align: center" })); }) .Scrollable(scr => scr.Enabled(true).Height(300)) .Sortable(builder => builder.Enabled(true)) .Resizable(resizing => resizing.Columns(true)) .Selectable() .DataSource(dataSource => dataSource .Ajax() .ServerOperation(false) ) ).Selectable() .DataSource(dataSource => dataSource .Ajax() .ServerOperation(false) )