Dim reportBook As New Telerik.Reporting.ReportBook()
Dim i As Integer
i = 0
For Each dr As DataRow In dt.Rows
reportBook.Reports.Insert(i, New ByFundReport(dr("Symbol").ToString(), dr("Fund").ToString(), HttpContext.Current.Session.SessionID.ToString(), Session("SessionGroupID")))
reportBook.Reports(i).DocumentMapText = dr("FundDisplay").ToString()
i = i + 1
Next
ReportViewer1.Report = reportBook
i am using this code to create nodes at runtime from the data retrieved from db.
the report creates pages but does not create navigation nodes in the report book
can you please help me with this?
Dim i As Integer
i = 0
For Each dr As DataRow In dt.Rows
reportBook.Reports.Insert(i, New ByFundReport(dr("Symbol").ToString(), dr("Fund").ToString(), HttpContext.Current.Session.SessionID.ToString(), Session("SessionGroupID")))
reportBook.Reports(i).DocumentMapText = dr("FundDisplay").ToString()
i = i + 1
Next
ReportViewer1.Report = reportBook
i am using this code to create nodes at runtime from the data retrieved from db.
the report creates pages but does not create navigation nodes in the report book
can you please help me with this?