Hi superbeem,
have a look to 'ContributorsList.cs' in method
'private void PushPrinting (object sender,SectionRenderEventArgs e) '
case GlobalEnums.ReportSection.ReportDetail:
BaseRowItem ri = e.Section.Items[0] as BaseRowItem;
if (ri != null) {
!! Find the item
BaseDataItem r = (BaseDataItem)ri.Items.Find("unbound1");
if (r != null) {
!!Set the value here
}
}
break;
hope this was helpfull to you
Peter