Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
chucky69
Frequent Visitor

PBI RS Jan 2021 - change the display size to full screen

Hello,

 

It is still not possible in PBI RS "January 2021" to choose a full screen display mode.

 

When this simple feature will finally be available?

 

It has already been used for several months in Power BI service : https://docs.microsoft.com/en-gb/power-bi/consumer/end-user-report-view

 

Today, using "rs: embed = true" in the url is not practical for an end user.

 

Thanks for your help.

5 REPLIES 5
DavidCousinsT
Frequent Visitor

You can provide your users with a bookmarklet that contains the necessary javascript to apply ?rs:embed=true to the current URL. Not ideal, but they'll be able to full screen any report with one click once they set that up in their browser.

Applying "?rs:embed=true" to the end of URL will reload the current page and lose all state.

So I came up with a version that will keep current state and trigger browser's native full screen mode.

Works great on Firefox 87 and PBIRS 2021-Jan.

 

javascript:(function(){elements = document.getElementsByClassName('pbi-frame');element = elements[0];if(element.requestFullscreen) {element.requestFullscreen();} else if(element.mozRequestFullScreen) {element.mozRequestFullScreen();} else if(element.webkitRequestFullscreen) {element.webkitRequestFullscreen();} else if(element.msRequestFullscreen) {element.msRequestFullscreen();}})();

Thank you for your reply.

Indeed it is not the ideal that I confirm.

I know the solution to wrap javascript in a bookmark, it works fine.

 

The javascript code :

 

javascript:(function(){window.location.href = window.location.href + "?rs:Command=Render&rc:Toolbar=false";})();

 

 

However, it is difficult to support hundreds of users in this type of manipulation, the tool should offer the functionality natively.

V-pazhen-msft
Community Support
Community Support

@chucky69 

Unfortunately, there is no permanent fix for this issue yet. Microsoft Idea  · Full Screen mode in Power BI Report Server.

Adding string at the end of the URL is currently the only workaround.

 

http://URL?rs:embed=true

Or

http://URL?rs:Command=Render&rc:Toolbar=false

 


Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.

Thank you for your answer.

I know all these solutions well, but we have been using this service for several years now and this type of functionality must be natively embedded.

The end user simply needs a button.

It has already been used for several months in Power BI service : https://docs.microsoft.com/en-gb/power-bi/consumer/end-user-report-view

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors