report viewer is not working in google chrome?!
How to display the report viewer control in google chrome?! I used report viewer in aspx page. The report viewer is working in all the browser exept in Google chrome. What to do to work the report viewer in Google chrome?!Manikannan N Software Engineer
March 8th, 2011 1:51pm

Not all report functionality is supported by all browsers. Please refer to this link to get more info: http://msdn.microsoft.com/en-us/library/ms156511.aspxIf you think my suggestion is useful, please rate it as helpful. If it has helped you to resolve the problem, please Mark it as Answer. Sevengiants.com
Free Windows Admin Tool Kit Click here and download it now
March 8th, 2011 2:30pm

Are either of you annoyed that in the year 2011 almost 20 years after mainstream www browsing that we still have these issues? Any people wonder why we give up on such things and write all of our own code. What is supposed to be easy never is.
June 20th, 2011 8:42pm

Example.... < rsweb:ReportViewer ID="reporter" runat="server" Width="740" Height="550" BackColor="#F2F5F2" SizeToReportContent="false" ExportContentDisposition="AlwaysInline" ProcessingMode="Remote" ShowToolBar="true" ShowPageNavigationControls="true" ShowZoomControl="false" ShowDocumentMapButton="false" ShowFindControls="False" ShowBackButton="false" ShowExportControls="false" ShowPrintButton="false" ShowParameterPrompts="false" ToolBarItemBorderStyle="Solid" ShowRefreshButton="false" ToolBarItemBorderColor="Black"EnableTheming="false" AsyncRendering="true" Enabled="false" Visible="false"></rsweb:ReportViewer> and jquery window.onload = function() { $(window.frames[0].window.frames['report'].document.getElementById('oReportDiv')).attr('style', 'overflow: none;'); }
Free Windows Admin Tool Kit Click here and download it now
September 9th, 2011 10:33pm

I had lots of challenges with getting things working consistantly across IE, Chrome, Firefox, Safari and Mercury. I have a ReportViewer control embedded in a table, if I specified the height then it would appear but if I wanted it to grow and shrink according to content then the RV toolbar would show, the progress indicator would show but it would not display the rendered report. In order to get it working I needed to set a couple of the attributes of the ReportViewer - Height and SizeToReportContent. <table id="reportviewertable" align="center"> <tr> <td> <asp:Label ID="lblErrorMessage" runat="server" Font-Bold="True" ForeColor="Red" Visible="False" /> </td> </tr> <tr> <td width="760px"> <rsweb:ReportViewer ID="rvRepViewer" runat="server" width="100%" height="100%" ZoomMode="PageWidth" ShowBackButton="true" SizeToReportContent="True" /> </td> </tr> </table> That's my recollection of what I did to get mine to work.
March 30th, 2012 3:32am

Thank you. It worked for me :) I had to set the properties of my ReportViewer, the same way you had them setup and it worked. Cheers
Free Windows Admin Tool Kit Click here and download it now
June 28th, 2012 11:18pm

Thanks, helped me very much!(Esta resposta foi til? Clique em SIM)
December 7th, 2012 11:42pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics