You need to be logged in to post in the forums. If you do not have an account, please sign up first.
Can't see reports generated by Microsoft Reporting Services
http://localhost/ReportServerhttp://localhost/Reports
Can't see reports generated by Microsoft Reporting Services. Opera shows me report's control panel, but the body of report is squeezed to ca. 2px height. In addition the report and its control panel should be stretched to full page width.
I had to override CSS with an user style sheet:
html, body, #ReportViewerForm {height:100%}
#oReportDiv>table, #oReportCell {width:100%}
.DocMapAndReportFrame {min-height:520px; min-width:800px}
#ParametersRowReportViewerControl>td {min-width:800px}
Better than nothing.
There is an layout (not important elements are omitted here):
<html>
<body style="margin: 0px; overflow: auto">
<form id="ReportViewerForm">
<table id="ReportViewerControl" style="display:inline-block;height:100%;width:100%;">
<tr><td>Control panel elements</td></tr>
<tr>
<td style="width:100%;height:100%;">
<iframe frameborder="0" class="DocMapAndReportFrame" style="width:100%;height:100%;display:inline;">
</iframe>
</td>
</tr>
</table>
</form>
</body>
</html>
IFRAME contains report itself.
I've tested "ReportViewerControl" (used border:dotted 1px red). With my custom CSS it is always of 100% width and 100% height of the page. But I was unable to make nested TDs and IFRAME of 100% width and height. Had to use min-width and min-height. I think, it's Opera's laches.
Please use [CODE][/CODE] tags.
For a collection of user scripts visit
http://my.opera.com/xErath/blog/
http://my.opera.com/xErath/blog/