Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

Some Microsoft Dynamics SL SSRS reports do not display in non-IE browsers


View products that this article applies to.

Symptoms

When you open certain SQL Server Reporting Services (SSRS) reports, such as Project Analyst and Expense, in a browser other then Internet Explorer, you may notice that the parameters section appears, but the report section does not display.

↑ Back to the top


Cause

There is an issue with the non-Internet Explorer browsers rendering the content.

↑ Back to the top


Resolution

To enable Report Server to work correctly with non-Microsoft browsers, add a pageLoad function with the code below to the end of the ReportingServices.js file on the SQL Server.

For SQL Server 2012 computers, add the following code to 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";        
    }
}

For SQL Server 2008 R2 computers, add the following code to Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportManager\js\ ReportingServices.js:

function pageLoad()
{
    var element = document.getElementById("ctl31_ctl09");

    if (element)
    {
        element.style.overflow = "visible";        
    }
}

↑ Back to the top


Keywords: kbmbsmigrate, kbmbspartner, kbsurveynew, kb

↑ Back to the top

Article Info
Article ID : 2932603
Revision : 2
Created on : 2/3/2017
Published on : 2/3/2017
Exists online : False
Views : 168