SSRS work in vs studio preview but blank page in browser

915 views Asked by At

i'm new to ssrs, i created AdventureWorksDW2008R2 DB for sql server 2008 R2, and try to create a report for that, here is the screenshot

enter image description here

enter image description here

After deployed the datasource and report, when i go to http://vm2012/Reports and enter domain user account and password, then i click the report, the report don't not show any employees name.

What is the problem?

1

There are 1 answers

0
Sébastien Sevrin On BEST ANSWER

This is because the chrome overflow:auto rendering is different than IE.

You can have more details on this SO answer.

The TL;DR is:

Update the file located in C:\Program Files\Microsoft SQL Server\<YourSSRSInstance>\Reporting Services\ReportManager\js\ReportingServices.js

and append the following script:

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

Replace <divName> with the name of the div.

Then the report should be displayed correctly in chrome.