I realize this is jumping into the deep end early but I have just started using Telerik reporting to replace a Crystal Report that I was generating for my company based on an Access database. Our current infrastructure is set up using an individual Access DB per project so the data binding must be accomplished at run time. In CR, I could simply create the report with no datasource and at run time bind the datasource using
crComCheck1.SetDataSource(dgvComCheck.DataSource)
To mimic this functionality, I have created a Telerik report with an ObjectDataSource. This ObjectDataSource has its DataSource property set to an xsd dataset that I have defined in my Visual Studio project with the column structure that I desire. In doing this, I am able to set up a report with the column structure that I would ultimately like to see produced with an object to bind to at runtime. In code, I am binding this datasource to a datagridview using
TrComCheck1.ObjectDataSource1.DataSource = dgvComCheck.DataSource
When I go to the Telerik report viewer and refresh the report, it properly pulls all of the columns and row data that I want to see but produces a table for each individual record in the dataset. So if there were 4 records in the dataset, there would be 4 tables each with the 4 correct records. I was wondering if you could offer some guidance as to why it was behaving in this fashion. Thank you.
crComCheck1.SetDataSource(dgvComCheck.DataSource)
To mimic this functionality, I have created a Telerik report with an ObjectDataSource. This ObjectDataSource has its DataSource property set to an xsd dataset that I have defined in my Visual Studio project with the column structure that I desire. In doing this, I am able to set up a report with the column structure that I would ultimately like to see produced with an object to bind to at runtime. In code, I am binding this datasource to a datagridview using
TrComCheck1.ObjectDataSource1.DataSource = dgvComCheck.DataSource
When I go to the Telerik report viewer and refresh the report, it properly pulls all of the columns and row data that I want to see but produces a table for each individual record in the dataset. So if there were 4 records in the dataset, there would be 4 tables each with the 4 correct records. I was wondering if you could offer some guidance as to why it was behaving in this fashion. Thank you.