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
HayaHaya 

Controlling sidebar?

I have a few visulaforce pages.

I want to control what shows on the sidebar.

 

When I have:

<apex:page docType="html-5.0" showHeader="true" standardStylesheets="false" sidebar="true">

The side bar has information.

 

When I change the code to: sidebar="false"

There is no sidebar.

 

My question:  How do I determine what shows in the sidebar?

 

 

Best Answer chosen by Admin (Salesforce Developers) 
Avidev9Avidev9
Well you cannot control the content of sidebar. Sidebar content are controlled by HomePage Layout.

Have a look here http://login.salesforce.com/help/doc/en/designing_home_page_layouts.htm

When you edit a home page layout you can select/deselect components that show in "Select Narrow Components to Show" . This is from where sidebar components are controlled

All Answers

Avidev9Avidev9
Well you cannot control the content of sidebar. Sidebar content are controlled by HomePage Layout.

Have a look here http://login.salesforce.com/help/doc/en/designing_home_page_layouts.htm

When you edit a home page layout you can select/deselect components that show in "Select Narrow Components to Show" . This is from where sidebar components are controlled
This was selected as the best answer
HayaHaya

Thank you so much :)