• To hide the 'Show Details' button, add the following to your ReportingServices.css file.

    #ui_btnSwitchView

    {

    visibility: hidden;

    }

    As stated this does hide the Show Details button for everyone, including Admins. However, I created a Bookmark that allows me and others to toggle the Details and List Views in my Favorites Toolbar. This works for IE. I have not tested it for other browsers.

    To create the Toggle button in your Favorites Bar, follow the instructions below.

    1.Create any favorite on the Favorites Bar.

    2.Right-click on the Favorite and select Properties.

    3.Select the General tab and rename the Favorite.

    4.Select Web Document tab and in the URL add the Javascript.

    5.The JavaScript is as follows:

    function gotoDetailhref(eid){var elmt = document.getElementById(eid); if (elmt != null){ window.location = elmt.href; } } gotoDetailhref("ui_btnSwitchView");

    6.Select OK.

    (58.30115757480578, -134.4143772125244)