I'm working on an ASP.NET 4.0 WebForm with Q2 2010.
Is there a way to display a full report without the report scrollbar? I need to use the Browser scrollbar instead, with the entire report appearing on the page. Setting ZoomMode to FullPage isn't an option because the report is too small to read. Here are a few things I've tried:
1. Look for a property or option that supports this. Can't find or just isn't there.
2. Tried a few suggestions from other forum posts. i.e. CSS settings. Don't Work.
3. Use reflection to get the Height property from the report and set Height in the viewer. I don't know if this is the height of the main report, but I have sub-reports and it doesn't seem to be getting the true height of the rendered report.
4. Tried jQuery but didn't get too far. It seems that there isn't an event I can hook up to for when the report is done rendering.
If the feature doesn't exist, I'd be happy to have a hack. Right now, I'm setting the Height to 10000px, but that has issues too.
Thanks,
Joe