Friday, October 10, 2014

Fix SSRS 2012 Reports were viewed Blank in Chrome and Safari


function pageLoad() { var element = document.getElementById("ctl31_ctl09"); if (element) { element.style.overflow = "visible"; } }

Append the above line in ReportingService.js file under this location

E:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportManager\js


Restart Reporting service

NOTE : ctl31_ctl09 is for SQL 2012. They are different in each version of SQL server.

No comments:

Post a Comment

How to add a Database to AlwaysOn Availability Group with four different options

To add a database to an existing AlwaysOn availability group, MS has given us four options to choose from Automatic seeding Full database an...