Search code examples
c#teleriktelerik-reporting

Telerik Reports Table view duplicated


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.

enter image description here

But when I view it in the Preview pane it duplicates the table X times the number of the rows i have returned.

enter image description here Anyone know why this is ?


Solution

  • 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.