0
votes

SSRS 2017 Report Builder correctly renders report with drilldown buttons and field data. When rendered in the browser both the drilldown and field data are not visible.

Edge, Chrome and IE all hide the field with the drilldown button on it. The fault appears to lie with css in .MSRS-RVC .tdResizable overflow:hidden, as if this is unticked (both in Chrome & IE Devtools) the fields are correctly shown, and work normally.

Edge screen grab showing missing fields:

enter image description here

Report Builder Screen shot showing how it should look with drop down buttons

enter image description here

SSRS Version

enter image description here

I have tried editing 'C:\Program Files\Microsoft SQL Server Reporting Services\SSRS\ReportServer\Styles\htmlviewer.css' by adding

.MSRS-RVC .tdResizable {
  overflow: visible !important;
}

to the bottom, however this has made no difference (I have restarted SSRS, but have not rebooted the server). Not sure I'm looking in the right place really...

1
You might want to double check this, however, I believe some of those interactive options are only accessible in Compatibility Mode when using IE>=11.Ross Bush
Thanks - I have tried in Compatibility mode, but that made no difference. I also get the same results in Chrome & Edge, so it's not specific to IE.Peter B
The functionality works when you export to PDF and Excel, correct?Ross Bush
Please provide screenshot of the RDL file "Row Groups" and the "Row Group Properties> GENERAL, VISIBILITY". It is possible that one of the settings is not properly configured. You might try tweaking the settings... the Visibility should be set as [SHOW] & [DISPLAY CAN BE TOGGLED BY : <MyDataField>]. Just play around with the ROW GROUPS (all of them), and see if you can get the group visibility correctly functioning.SherlockSpreadsheets
When Exporting to Excel it works perfectly, regardless of how it displaysPeter B

1 Answers

2
votes

I have modified the 'Can Grow' attribute to True on the field that was not visible, and this has resolved the issue. This should not really have made any difference, as the data is a fixed length and the report was easily wide enough to accommodate it (I even made it much wider to it to see if that was an issue), but that made no difference.

I can only presume that, in the background, the addition of the + button exceeded the row height set. This was working just fine with previous versions of SSRS, so the 2017 version must have a larger image for that button for some reason!

Hope this helps someone else in future!