Advertisement
Guest User

SSRS 2012 Chrome Fix

a guest
Jan 30th, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //Append to the bottom of C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportManager\js\ReportingServices.js
  2. function pageLoad() {
  3.     if(window.navigator.userAgent.indexOf("MSIE ") == -1) {
  4.         var child = document.querySelector('div[id$="_ReportArea"]');
  5.         if(child) {
  6.             var parent = child.parentNode;
  7.             if(parent) {
  8.                 parent.style.overflow = "visible"
  9.             }
  10.         }
  11.     }
  12. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement