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
Jim F.ax281Jim F.ax281 

Overriding standard Opportunity View page

Hi everybody,

 

I've created a VisualForce page that I want to use to override the standard View page for Opportunities.  It looks something like this:

 

<apex:page standardController="Opportunity" showHeader="true" title="Opportunity: {!Opportunity.Name}" >
    <apex:detail relatedList="true" relatedListHover="true" id="dt" showChatter="true" inlineEdit="true" />
</apex:page>

 

This works like a champ as a template; I do more with this, but this is the shell.  The Opportunity page looks the same as it does when it isn't overridden, which was the goal, with one exception: the Edit Layout link isn't visible in the top right corner of the page for Administrators.  Is this just something I'll just have to live with?  Any assistance would be fantastic!

 

Thanks, Jim