SSRS Reports are not opening in chrome

  • SSRS 2012 Reports are not opening in chrome and they are opening in IE,
    when i google i can see below work around, It not work for me, can some one help me to fix this issue

    Append the following script to the following file (on the SSRS Server)
    C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportManager\js\ReportingServices.js

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

    AND

    Insert into .aspx page (or into a linked .css file, if available) this style line

    #reportViewer_ctl09 {
    overflow:visible !important;
    }

    Thanks
    Sunny

  • Personally I've found that Chrome does not play well with SSRS (like it doesn't play well with a lot of things). I'd personally suggest using a different browser. I believe MS didn't even "officially" support it till SQL 2016.

    Thom~

    Excuse my typos and sometimes awful grammar. My fingers work faster than my brain does.
    Larnu.uk

  • G Sunny - Tuesday, October 17, 2017 11:52 AM

    SSRS Reports are not opening in chrome and they are opening in IE,
    when i google i can see below work around, enven it also not work for me, can some one help me to fix this issue

    Append the following script to the following file (on the SSRS Server)
    C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportManager\js\ReportingServices.js

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

    AND

    Insert into .aspx page (or into a linked .css file, if available) this style line

    #reportViewer_ctl09 {
    overflow:visible !important;
    }

    Thanks
    Sunny

    Check the Chrome web store - there are a few fixes listed there for SSRS as well as an IE tab extension which may work. 

    Sue

  • Sue_H - Tuesday, October 17, 2017 12:05 PM

    G Sunny - Tuesday, October 17, 2017 11:52 AM

    SSRS Reports are not opening in chrome and they are opening in IE,
    when i google i can see below work around, enven it also not work for me, can some one help me to fix this issue

    Append the following script to the following file (on the SSRS Server)
    C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportManager\js\ReportingServices.js

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

    AND

    Insert into .aspx page (or into a linked .css file, if available) this style line

    #reportViewer_ctl09 {
    overflow:visible !important;
    }

    Thanks
    Sunny

    Check the Chrome web store - there are a few fixes listed there for SSRS as well as an IE tab extension which may work. 

    Sue

    Thanks for update Sue, The reports are rendering for our prod server in chrome, 
    we are seeing issue in our test, i have tried with all extensions but no luck.

    -Sunny

  • G Sunny - Tuesday, October 17, 2017 2:46 PM

    Thanks for update Sue, The reports are rendering for our prod server in chrome, 
    we are seeing issue in our test, i have tried with all extensions but no luck.

    -Sunny

    Okay...sorry as I had no idea this worked in production but not in test so that's a different issue, likely related to configuration differences. Not sure what the configuration differences are other than what Thom mentioned above. Chrome isn't officially supported until SQL Server 2016. Your changes look like they are for SQL Server 2008 so no official support.
    Try a file comparison on the config files and ReportingServices.js file in test vs the file in prod. You can just copy them both to some other folder to compare.

    Sue

Viewing 5 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic. Login to reply