cancel
Showing results for 
Search instead for 
Did you mean: 

Join the discussion

Most Recent
JR-BejeweledOne
Super User
Super User

What is it that makes an app visually appealing?  Layout is one big thing of course and how it flows from one area to another, but what about other elements, colors, buttons etc.?

Read more...

ragavanrajan
Most Valuable Professional
Most Valuable Professional

 

Scenario: 

 

You may have the scenario where you want to disable the toggle navigation button (image below) for specific web page. Ex: Contract agreement web page or Terms and Condition web page.  Where you dont want users to navigate to different links while reading T&C. 

 

In PowerApps Portal > Choose  any web page in responsive mode. You can see the below toggle navigation button.  This occurs because of the bootstrap theme. 

 

ragavanrajan_0-1613431591290.png

 

Solution:  In Terms and Condition Web page. 

 

In Portal management app:

 

1. Content > Web Pages > TermsAndCondition (Name of the web page) 

2. Under Localized Content > Select web page > Edit > Advanced 

 

Under Custom JavaScript section: Add the below JavaScript code to hide the toggle navigation bar element 

 

document.getElementsByClassName("navbar-toggle collapsed")[0].style.visibility = "hidden";

 

Hint: You can also apply jQuery as a replacement to hide your element. 

 

Hope this little trick is useful incase if you have the same scenario in your organization.