Hello,
I have the following report layout...
------------------------
Header
------------------------
Detail
Subreport1
Subreport2
Subreport3
Subreport4
------------------------
Footer
------------------------
Each of the subreports refuse to grow based on their data.
I'm binding the MasterReport to a datatable. This is my detail_ItemDataBinding event which assigns some local variables of the subreport:
In the design view, the subreports are each 0.4" in height and never increase when there is enough data to increase the size. I'm not modifying the height of the subreports programmatically at runtime at all.
Any ideas on what could be going wrong?
Thanks in advance!
-Allen
I have the following report layout...
------------------------
Header
------------------------
Detail
Subreport1
Subreport2
Subreport3
Subreport4
------------------------
Footer
------------------------
Each of the subreports refuse to grow based on their data.
I'm binding the MasterReport to a datatable. This is my detail_ItemDataBinding event which assigns some local variables of the subreport:
private
void
detail_ItemDataBinding(
object
sender, EventArgs evt)
{
Telerik.Reporting.Processing.DetailSection detailSection = (Telerik.Reporting.Processing.DetailSection)sender;
DataRowView row = (DataRowView)detailSection.DataObject.RawData;
Telerik.Reporting.Processing.TextBox txtEntityName = (Telerik.Reporting.Processing.TextBox)detailSection.ChildElements.Find(
"txtEntityName"
,
true
)[0];
if
(txtEntityName !=
null
)
txtEntityName.Value = row[
"EntityName"
];
}
In the design view, the subreports are each 0.4" in height and never increase when there is enough data to increase the size. I'm not modifying the height of the subreports programmatically at runtime at all.
Any ideas on what could be going wrong?
Thanks in advance!
-Allen