Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>To get around having to hardcode the element ID, I edited the ReportingServices.js file on the RS server @ <strong>[Drive]:\Program Files\Microsoft SQL Server\[Reporting Services Instance]\Reporting Services\ReportManager\js\ReportingServices.js</strong> to include some code to fetch jQuery, load it into the page, and then find all elements where overflow is set to auto.</p> <p>Insert the following code at the top of the ReportingServices.js file</p> <pre><code>var loadjQuery = function (cb) { if (typeof (jQuery) == 'undefined') { var scr = document.createElement('script'); scr.setAttribute('type', 'text/javascript'); scr.setAttribute('src', 'http://code.jquery.com/jquery-latest.js'); if (scr.readyState) { scr.onreadystatechange = function () { if (scr.readyState === 'complete' || scr.readyState === 'loaded') { scr.onreadystatechange = null; if (typeof (cb) === 'function') { args = [].slice.call(arguments, 1); cb.apply(this, args); } } }; } else { scr.onload = function () { if (typeof (cb) === 'function') { args = [].slice.call(arguments, 1); cb.apply(this, args); } }; } var head = document.getElementsByTagName('head')[0]; head.insertBefore(scr, head.firstChild); } } </code></pre> <p>Then the next line after that is what was originally in the JS file.</p> <p>After that, add the following code</p> <pre><code>var _rmFixReady = false; function pageLoad() { loadjQuery(function () { _rmFixReady = true; }); if (_rmFixReady) { var overflowElements = $('div').filter(function () { return $(this).css('overflow') == 'auto'; }); overflowElements.each(function () { $(this).css('overflow', 'visible'); }); } } </code></pre> <p>I just finished testing this with Chrome 27 and IE 10 on a RM2012 instance and it worked great.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload