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
aalanaalan 

How to create Reports and Tools sections when overriding the Account Tab overview page?

I am creating a new visualforce page to override the Account Tab's overview page.

 

The Account Tab overview page contains a "Reports" and "Tools" sections.

 

How do I code to replicate the Reports and Tools sections into the visualforce page?

 

 

I have read the Visualforce Developers Guide and looked through the Visualforce documentation, but cannot find how to do this.

 

Thank you,

Alan

MATTYBMEMATTYBME

You could just create a pageBlockSectionItem, or two to replicate the look of the sections at the bottom of the Account homepage, at the bottom of your new page and use commandLinks to create the links. Obviously you will need the URL of each Report and Tool and create a commandLink for all.

 

Or you could create a component for Reports and one for Tools again using commandLink and call the componenet into your page.