在telerik报告中嵌套列表控制最多3级

时间:2016-10-25 13:59:43

标签: c# asp.net telerik-reporting

我正在开发ASP.NET中的Web应用程序,这个应用程序有报告所以报告我正在使用telerik报告库。 在本报告中,我希望使用列表控件显示详细信息,下面是我的对象结构

  public class ReportModel
  {

    public ReportModel()
    {
        Children = new List<Elements>();
    }

    public string Header { get; set; }
    public string DateTime { get; set; }
    public int OfferId { get; set; }
    public string OfferName { get; set; }
    public List<Elements> Children { get; set; }
 }

 public class Elements
{
    public Elements()
    {
        Children = new List<Position>();
    }

    public int ElementId { get; set; }
    public string ElementName { get; set; }
    public List<Position> Children { get; set; }
}

public class Position
{
    public Position()
    {
        Children = new List<OfferItem>();
    }

    public int PositionId { get; set; }
    public string PositionName { get; set; }

    public List<OfferItem> Children { get; set; }
}

public class OfferItem
{
    public int OfferItemId { get; set; }
    public string OfferItemName { get; set; }
}

上面是我的对象结构,我想在报告中显示的那些数据, 请让我知道如何将这些多级数据绑定到list-nested-list-nested-list控件。 请让我知道任何解决方案。

提前致谢。

0 个答案:

没有答案