hi, i got a problem with a subreport, i want to set datasource on needdatasource method, this works fine on Q1 2012 but i just migrate my report and it doesnt work my code that used to work is
i need to set the datasource on needdatasource of my subreport
thanks
Alberto
Telerik.Reporting.Processing.
ReportItemBase item = (Telerik.Reporting.Processing.ReportItemBase)sender;
int idQueja = (int) item.DataObject["idQueja"];
cNQueja ocNQueja = new cNQueja(idQueja);
ocNQueja.Load();
denunciadosReport.ReportSource.DataSource = ocNQueja.ListaDenunciado;
i need to set the datasource on needdatasource of my subreport
thanks
Alberto