Making SSRS 2012 Report Manager Work in Chrome
By Don Jarrett on Mon October 20, 2014 at 08:41 amGetting Report Manager to work in Chrome:
Modify the file 'ReportingServices.js' located in: 'C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportManager\js'
on the report server, and append the following to the end of the file:
function pageLoad() {
var element = document.getElementById("ctl32_ctl09");
if (element) {
element.style.overflow = "visible";
}
}
Posted in Computers/Technology
Comments
No Comments