使用带字典和列表的MvcContrib Grid

时间:2010-01-08 07:50:20

标签: asp.net-mvc grid mvccontrib

我有一个包含普通属性旁边的属性值(属性包)字典的类。我想使用MvcContrib中的网格在表格中显示该对象的集合。

班级:

public class ObjectWithPropertyBag
{
   public string Property1 { get; set; }
   public string Property2 { get; set; }   

   public Dictionary<string, string> PropertyBag { get; set; }
}

我的GridModel(ObjectWithPropertyBagGridModel):

Column.For(x => x.Property1);
Column.For(x => x.Property2);
Column.For(x => x.PropertyBag)//how to display keys as columns and values as table data

我的观点:

Html.Grid(ViewData.Model.ObjectWithPropertyBag).WithModel(new ObjectWithPropertyBagGridModel())

有没有办法迭代字典并创建列?

感谢。

1 个答案:

答案 0 :(得分:1)

类似的东西:

foreach (var prop in PropertyBag) column.For(prop.Value).Named(prop.Key);

我不记得确切的语法,但据我记得你不必使用lambdas。或者它应该是.For(“”)。Value(prop.Value)...只需检查Grid的源(或谷歌)是否有重载。