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
Priya Guleria 7Priya Guleria 7 

please help me to Show fields opportunity name ,stage name,account name(it needs to clickable and on click navigate to account view ).

Naveen DhanarajNaveen Dhanaraj
Hi priya,

Try this,
<apex:page standardController="Opportunity">
    <apex:form >
        <apex:pageBlock title="Opportunity VF page"  >
            <apex:pageBlockSection >
                  <apex:inputfield label="Name" value="{!Opportunity.Name}" />
                  <apex:inputfield label="StageName" value="{!Opportunity.StageName}"/>
                  <apex:inputfield label="Account Name" value="{!Opportunity.Accountid}"/>     
              </apex:pageBlockSection>
         </apex:pageBlock>
      </apex:form> 
</apex:page>