Kendo MVC网格中的动态多头列

时间:2015-06-12 17:09:34

标签: kendo-ui kendo-grid kendo-asp.net-mvc

我想从以下模型创建一个网格。

public class ProgramBreakdown
{
    public string ProgramName{ get; set; }
    public List<MonthwiseInfo> MonthwiseProgramInfo { get; set; }
}

public class MonthwiseInfo
{
    public string Month { get; set; }
    public int TotalUsers { get; set; }
    public int ActiveUsers { get; set; }
    public double ActivePerc{ get; set; }
}

enter image description here

有没有办法动态添加/定义多头标题列,如Kendo MVC中的图像所示 - 服务器端或客户端?

0 个答案:

没有答案