0

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?

hkguile
  • 4,235
  • 17
  • 68
  • 139

1 Answers1

0

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.

Community
  • 1
  • 1
Sébastien Sevrin
  • 5,267
  • 2
  • 22
  • 39