or
var mainReport = new TheReport();// this works finevar detail = ((mainReport.Items[0] as Telerik.Reporting.DetailSection) .Items["subReport"] as Telerik.Reporting.SubReport);// this one does not workvar innerDetail = ((detail.Items[0] as Telerik.Reporting.DetailSection) .Items["innerSubReport"] as Telerik.Reporting.SubReport);Hello Telerik Team,
I am converting the Crystal reports to telerik reports. In previous crystal reports we had "Supress(No drill down)" option
if we want to hide some sections based on some conditions. Do we have that kind of option in telerik reports.If so can you quote me an example on how to achieve it.
My requirement is hiding and showing some sections in the telerik report.
Thank you for the support.
Thank you
Smith
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; }}