Skip to content

Instantly share code, notes, and snippets.

@pmachapman
Created April 8, 2015 22:01
Show Gist options
  • Save pmachapman/d6f4e1d894b00803582f to your computer and use it in GitHub Desktop.
Save pmachapman/d6f4e1d894b00803582f to your computer and use it in GitHub Desktop.
Fix SSRS 2012 in Chrome (Append this to C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportManager\js\ReportingServices.js)
function pageLoad() {
var element = document.getElementById('ctl32_ctl09');
if (element) {
element.style.overflow = 'visible';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment