Razor 嵌套 WebGrid

问题描述 投票:0回答:1

如何嵌套 WebGrid,并为每列设置大量格式。我可以做一个嵌套的 for 循环,但我基本上需要它来进行分页。或者还有其他更好的选择吗?

asp.net-mvc asp.net-mvc-3 razor pagination webgrid
1个回答
12
投票

请原谅冗长的数据设置,但这可行......

@{
    var data = Enumerable.Range(0, 10).Select(i => new { Index = i, SubItems = new object[] { new { A = "A" + i, B = "B" + (i * i) } } }).ToArray();
    WebGrid topGrid = new WebGrid(data);
}

@topGrid.GetHtml(columns:
    topGrid.Columns(
        topGrid.Column("Index"),
        topGrid.Column("SubItems", format: (item) =>
        {
            WebGrid subGrid = subGrid = new WebGrid(item.SubItems);
            return subGrid.GetHtml(
                    columns: subGrid.Columns(
                        subGrid.Column("A"),
                        subGrid.Column("B")
                    )
                );
        })
    )
)

渲染:
No styling

当然,您必须确保在 GetHtml() 方法调用中为每个网格(顶部和子网格)提供用于分页/排序的唯一参数名称,否则最终会出现冲突。

© www.soinside.com 2019 - 2024. All rights reserved.