Telerik.Reporting.Processing.ReportItem item = cell.Item;
//(In cell.Item i can see html text box values)
//How to modify my dynamic TextBox Values
Telerik Version: 6.1.12.820
foreach (...)
{
var genericSubReport = new GenericSubReport(data, title);
Telerik.Reporting.InstanceReportSource instanceReportSource = new Telerik.Reporting.InstanceReportSource();
instanceReportSource.ReportDocument = genericSubReport;
//use w/o subreports defined
Telerik.Reporting.SubReport subReport = new Telerik.Reporting.SubReport();
subReport.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(subReportDefaultLocation), Telerik.Reporting.Drawing.Unit.Inch(currentLocation));
subReport.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(subReportWidthSevenPointNine), Telerik.Reporting.Drawing.Unit.Inch(subReportSpacer));
measureReport.Items["detailSection"].Items.Add(subReport);
subReport.ReportSource = instanceReportSource;
subReportIndex++;
currentLocation += LOCATION;
}
The subreport itself, builds the table in the code behind. We do all this becase it was either design 100+ reports or use a dynamic model. Other thing to note is the subreports do not use the NeedDatasource but do use the ItemDataBinding.
</Summary>
