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
phani_mphani_m 

How to can i link the standard object to visual force?

HI............. There is jobs tab by

  clicking on that, which is in  the standard page it should open with vf page

how to link that with the vf tagscan any  help me 

                                

       _________________________________________

       |HOme | JOBS_|____|_______|_______|_________|            

                           | 

                           |   clicking on that                 

                      _________________________________ 

                     |   open in new vf page                                       |

                     |                                                                               |

                     |__________________________________|           

 

how can i get all the details of the job object to vf page is there any code

 

 

 

PremanathPremanath

Create on VF page with Standard controller.

 

Create on VF Tab

 

setup-->create-->Tabs-->VF Tabs.. With this Vf page create one Tab

 

 

code like here you go

 

 

<apex:page standardController="Opportunity" sidebar="false">
<apex:sectionHeader title="Edit Opportunity" subtitle="{!opportunity.name}"/>
<apex:form >
<apex:pageBlock title="Edit Opportunity" id="thePageBlock" mode="edit">
<apex:pageMessages />
<apex:pageBlockButtons >
<apex:commandButton value="Save" action="{!save}"/>
<apex:commandButton value="Cancel" action="{!cancel}"/>
</apex:pageBlockButtons>
<apex:pageBlockSection title="Basic Information" columns="1">
<apex:inputField value="{!opportunity.name}"/>
<apex:inputField value="{!opportunity.stageName}"/>
<apex:inputField value="{!opportunity.amount}"/>
<apex:inputField value="{!opportunity.closedate}"/>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>

 

 

prem