Help...
I'm a newbie at Telerik reporting. I am having a hard time getting this down for my project.
I have a datatable with say 5 rows of data.
I am then binding that datatable to the table. When I do this, it creates a new page in the report for each row of data. I would like 5 rows of data in one page
etc...
Row 1 = 'FirstName' 'LastName'
Row 2 = 'FirstName2' 'LastName2'
However, what it's doing is putting Row 2 on another page. Any help?
Here is my code...
I'm a newbie at Telerik reporting. I am having a hard time getting this down for my project.
I have a datatable with say 5 rows of data.
I am then binding that datatable to the table. When I do this, it creates a new page in the report for each row of data. I would like 5 rows of data in one page
etc...
Row 1 = 'FirstName' 'LastName'
Row 2 = 'FirstName2' 'LastName2'
However, what it's doing is putting Row 2 on another page. Any help?
Here is my code...
rpt.DataSource = datatable;
ReportViewer1.Report = rpt;
On actual report. I just have a table control and FirstName and LastName in 2 separate columns.
ReportViewer1.DataBind()