Reputation: 543
I have a report services project that I'm rending on Mobile. The display is perfect, except that reporting services 2008 paginates the report into two separate tables for reports with many rows. I'd like to turn this off. According to research I have done, you need to set the report's InteractiveHeight to 0 to disable paging. However, there is no such element in the RDL's xml format. Is there somewhere else that this can be done, or is there something I am missing?
Upvotes: 4
Views: 5922
Reputation: 751
For newer versions of SSRS, I went to Report->"Report Properties", and set the Height to 20 inches.
Upvotes: 0
Reputation: 741
Report height could be set from designer view (valid for VS 2010). Follow below steps:
Image explaining steps to follow
Upvotes: 0
Reputation: 39596
You can do this in the Designer:
This element will only be present if there are non-default values for InteractiveSize:
<Page>
<InteractiveHeight>0in</InteractiveHeight>
<InteractiveWidth>8.5in</InteractiveWidth>
<LeftMargin>1in</LeftMargin>
<RightMargin>1in</RightMargin>
<TopMargin>1in</TopMargin>
<BottomMargin>1in</BottomMargin>
<Style />
</Page>
If you haven't changed these values from default, they won't be in the XML:
<Page>
<LeftMargin>1in</LeftMargin>
<RightMargin>1in</RightMargin>
<TopMargin>1in</TopMargin>
<BottomMargin>1in</BottomMargin>
<Style />
</Page>
So you can add this through the Designer, or update the RDL. However, the element won't be present in all cases, as above, so you'll need to add it if its not present.
Upvotes: 10