我有一点问题,我不知道如何解决,我想过滤我的菜单的孩子或只返回子菜单的一个值,我在我的控制器中有这个:
public ActionResult ModelBinding()
{
NorthwindDataContext northwind = new NorthwindDataContext();
var data = (from m in northwind.Categories
join a in northwind.Products on m.CategoryID equals a.CategoryID
where m.CategoryID == 1 && a.ProductID == 1
select m).ToList();
return View(data);
}
这是我的观点
@model IEnumerable<Kendo.Mvc.Examples.Models.Category>
@(Html.Kendo().Menu()
.Name("Menu")
.BindTo(Model, mappings =>
{
mappings.For<Kendo.Mvc.Examples.Models.Category>(binding => binding
.ItemDataBound((item, category) =>
{
item.Text = category.CategoryName;
})
.Children(category => category.Products));
mappings.For<Kendo.Mvc.Examples.Models.Product>(binding => binding
.ItemDataBound((item, product) =>
{
item.Text = product.ProductName;
}));
})
)
在我的控制器中我发送过滤器,其中ProductID == 1但是当菜单运行时,该类别会返回该类别的所有产品,有时会像这样
我希望它只返回一个产品,所以我怎么做到那个或我可以放过滤器,有人有一个例子我非常感谢帮助,谢谢
答案 0 :(得分:0)
您可以查看Multiple filters in Kendo Combobox上的答案。在那个页面中,我展示了对Kendo Combobox的过滤。希望这会有所帮助...