Friday, October 11, 2013

How to get SSRS reports working in Google Chrome


  1. On your SSRS server locate the  ReportingServices.js file. Normally you can find it in "C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportManager\js\ReportingServices.js"
  2. Edit the file, append this to the end of the file 
    function pageLoad() {    
        var element = document.getElementById("ctl31_ctl09");
        if (element) 
        {
            element.style.overflow = "visible"; 
        } }
Test a report.

Many thanks to the guys on StackOverflow for that one.
http://stackoverflow.com/questions/5428017/cannot-view-ssrs-2008-r2-ssrs-2012-reports-in-safari-chrome-but-works-fine-in

Notes: Any activex control such as Print Control and Zoom Controls will still not work in Chrome. This is because only Internet explorer will support the use of such controls.

If you find this article useful please leave me a comment or click on an ad to show your support.

No comments :

Post a Comment