I'm trying to use the approach mentioned in the following article to get textbox values:
http://www.telerik.com/help/reporting/using-section-events.html
I'm getting the following error:
Error 1 Cannot implicitly convert type 'Telerik.Reporting.Processing.ProcessingElement' to 'Telerik.Reporting.Processing.ReportItemBase'. An explicit conversion exists (are you missing a cast?)
What am I doing wrong?
http://www.telerik.com/help/reporting/using-section-events.html
I'm getting the following error:
Error 1 Cannot implicitly convert type 'Telerik.Reporting.Processing.ProcessingElement' to 'Telerik.Reporting.Processing.ReportItemBase'. An explicit conversion exists (are you missing a cast?)
What am I doing wrong?
private void detail_ItemDataBound(object sender, EventArgs e) |
{ |
Telerik.Reporting.Processing.DetailSection section = sender as Telerik.Reporting.Processing.DetailSection; |
Telerik.Reporting.Processing.ReportItemBase extraShipping = section.ChildElements.Find("extraShippingCostTextBox", false)[0]; |
} |