Hi iam trying to do the below but it doesnt work
Should i use something else that detailsection ?
| private void groupFooterSection1_ItemDataBound(object sender, System.EventArgs e) |
| { |
| Telerik.Reporting.Processing.DetailSection procDetail = sender as Telerik.Reporting.Processing.DetailSection; |
| DataRowView dataRowView = (DataRowView)procDetail.DataItem; |
| if ((decimal)dataRowView["calculation_bruttoAvance"]==0) |
| { |
| Telerik.Reporting.Processing.TextBox procTxtColor = procDetail.Items["lbBrutto"] as Telerik.Reporting.Processing.TextBox; |
| Telerik.Reporting.Processing.TextBox procLblColor = procDetail.Items["txtBrutto"] as Telerik.Reporting.Processing.TextBox; |
| procTxtColor.Visible = false; |
| procLblColor.Visible = false; |
| } |
| } |