SQL Reporting Service - Viewing reports in FULL SCREEN
There are 2 methods to achieve this
Previously I was Explained about the How to remove rows from GridView using jQuery in asp.net, Nested GridView in ASP.NET Using c# with show/hide , How to Add a Locked Header Row to an ASP.NET GridView Control , How to remove rows from GridView using jQuery in asp.net , Popup window on button click in asp net
1. Modify ReportingServices.js in "Program Files\Microsoft SQL Server\MSSQL\Reporting
Services\ReportManager\js"
2. Create a frontend HTML page which forces the Report Manager to Open in Full Screen Mode.
METHOD I.
===============================
Add the following lines in ReportingServices.js file:
//--- maximize window
window.moveTo(0,0);
window.resizeTo(screen.width,screen.height);
window.moveTo(0,0);
window.resizeTo(screen.width,screen.height);
Note: This will bring report manager in Maximized IE mode and not in Full Screen Mode.
METHOD II.
========== ======================
STEP 1. Create a new default.html page as follows
<html>
<html>
<head></head>
<body>
<script type="text/javascript">
window.open("Home.aspx","","channelmode")
</script>
</body>
</html>
STEP 2. copy this defaul.html in C:\Program Files\Microsoft SQL Server\MSSQL.3\Reporting Services\ReportManager folder.
STEP 3. Changes the default document setting in Reports Virtual Directory.
1. Open IIS manager by typing “inetmgr” in the start? run [this will bring IIS manager]
2. Expand local computer > Web Sites > default web sites and open the node with name Reports.
3. Right click over the “Reports” and go to properties.
4. Click on the documents tab and click on the top ADD button. [this will bring "add content page box"]
5. Type "default.html" and hit OK.
6. Check "enable default content page" check box
7. Select default.html page and click on "Move up" button.
7. Browse reports
-- This will bring the Reports in FULL SCREEN MODE
Note: This method requaires that POP-UP blocker is relaxed.
Hope this help .....
Comments
Post a Comment