I have a report with some event handler like below.
I serialize it into XML file, and then deserialize XML file to report.
The event doesn't work anymore.
Any suggestion?
private
void
groupFooterSection2_ItemDataBinding(
object
sender, EventArgs e)
{
Telerik.Reporting.Processing.GroupSection procGroup = sender
as
Telerik.Reporting.Processing.GroupSection;
DataRowView row = procGroup.DataObject.RawData
as
DataRowView;
if
(row[
"group1"
].ToString() ==
""
)
{
procGroup.Visible =
false
;
}
}
The event doesn't work anymore.
Any suggestion?