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
csreddy7799csreddy7799 

Detail Page Enahncements

Hi,

 

     i want to customize object detail page title. Is it possible, if possible then how to do.

 

 

Thanks

Shashi

Best Answer chosen by Admin (Salesforce Developers) 
kiranmutturukiranmutturu
if that is a custom page then u can make us like below

<apex:page standardController="Opportunity" tabStyle="Opportunity" sidebar="false">
<apex:sectionHeader title="One of Your Opportunities" subtitle="Exciting !"/>
<apex:detail subject="{!opportunity.ownerId}" relatedList="false" title="false"/>
</apex:page>

All Answers

kiranmutturukiranmutturu
go to app setup then tab names and labels in that Rename Tabs and Labels
csreddy7799csreddy7799

Hi Kiran ,

 

           my requirement is, see the below image. I want to add appent text to record title(2013 Spring Brochure) see the url for image

http://www.4shared.com/photo/Am99ez0D/Untitled.html

kiranmutturukiranmutturu
if that is a custom page then u can make us like below

<apex:page standardController="Opportunity" tabStyle="Opportunity" sidebar="false">
<apex:sectionHeader title="One of Your Opportunities" subtitle="Exciting !"/>
<apex:detail subject="{!opportunity.ownerId}" relatedList="false" title="false"/>
</apex:page>
This was selected as the best answer