Last Updated: February 25, 2016
·
3.521K
· molex

Allow SSRS reports to display in Chrome

Append to "C:\Program Files\Microsoft SQL

Server\MSRS10_50.MSSQLSERVER\Reporting    Services\ReportManager\js\ReportingServices.js" (on the SSRS Server) :
//Fix to allow Chrome to display SSRS Reports
function pageLoad() { 
   var element = document.getElementById("ctl31_ctl09");
    if (element) 
    {
       element.style.overflow = "visible";         
    } 
}