locked
ReportViewer 11 issues RRS feed

  • Question

  • User-354887611 posted

    Hello there,

    I recently updated to Report Viewer 11 (from version 8) and seeing issues in the Report Viewer tool bar and the height of the report. I have an aspx page on which i have added the Report Viewer 11 control. There is a footer on the aspx page. When i run the report, the height of the table overlaps the aspx page's footer. Does anyone know of a property (if there is any) that can be set to control that. I have tried setting the height but doesn't work.

    Also, in the report tool bar, the export dropdown control looks weird. when i click on it to see the export options, its too wide and i don't text on any of the options. I only see them in the tool tip when i hover on the dropdown's list options.

    If some one was able to fix this in the past, can you please share the details?

    thanks

    Monday, January 5, 2015 12:40 PM

Answers

All replies

  • User1711366110 posted

    Hi watch09,
       As per your case, I have been shared my suggestion below :

    In the Reportviewer ,set AsyncRendering="False" .
    You can try like below :

    <div style="Width:auto;"> 
    <form id="form1" runat="server" style="width:100%; height:100%;">
        <asp:ScriptManager ID="ScriptManager1" runat="server">
        </asp:ScriptManager>
        <rsweb:ReportViewer ID="rptViewer" runat="server" Width="100%" Height="100%" 
                AsyncRendering="False" 
                SizeToReportContent="True">
        </rsweb:ReportViewer>
    </form></div>
    

    If still not working then the following link guide you to check your Page footer :
    http://stackoverflow.com/questions/42294/how-do-you-get-the-footer-to-stay-at-the-bottom-of-a-web-page

    Hopefully this will be helpful for you.
    --
    with regards,
    Edwin

    • Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
    Tuesday, January 6, 2015 3:25 AM
  • User-354887611 posted

    Thanks. I was able to fix the overlap issue with some hints on the 2nd link. Setting AsyncRendering to false didnt work for me :(

    Any idea on fixing the rendering issue for the export dropdown menu on the tool bar? any pointers?

    Tuesday, January 6, 2015 9:16 AM
  • User1711366110 posted

    Hi watch09,
       

    Any idea on fixing the rendering issue for the export dropdown menu on the tool bar? any pointers?


    1. Try like this :   set SizeToReportContent="False" in Report viewer
    2. If any render problem, refer the following link :
    http://blogs.msdn.com/b/vijaysk/archive/2009/01/14/report-viewer-toolbar-does-not-render-properly-on-iis-7-0.aspx?PageIndex=2

    --
    with regards,
    Edwin

    • Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
    Wednesday, January 7, 2015 8:27 PM