Hi I an using the Telerik Report view to generate a report.
All good, I have mapped the data to my data source and the report looks great in the design view.
But when I view it in the Preview pane it duplicates the table X times the number of the rows i have returned.
I had this issue when building a report page that had textboxes and a table. The textboxes took their values from ReportParameters
and the table was using an objectDataSource
.
The problem was that I had my objectDataSource
assigned to the DataSource
of both the page itself and the table.
To fix the issue I just removed the objectDataSource
from the page.