function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
lamayclamayc 

sidebar and header disable

Is there anyway to disable the sidebar and header on default pages (i.e. default edit page).

 

This is what I have:

I have my home page with the header and sidebars.

In the main area, I display a list of things to do (tasks ...)

When I click on one of the items, instead of going to a new page, it just pops up the view or edit page in a section (iframe) below the list.

 

The problem is that the iframe also has the header and sidebar in it.

 

Suggestions?

Thanks.

Best Answer chosen by Admin (Salesforce Developers) 
BrianWKBrianWK

<apex:page showheader="false" >

 

 

That'l remove both the header tabs and the sidebar. I believe there are also options to show just the header or just the sidebar. Take a look at the built-in component reference for apex page.