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
udayar_jayamudayar_jayam 

Embed visualforce page layout

Hi All,

       I have  created simple VF page and the  page is added to the pagelayout(Account) . But this add page is only visible in detailed but in edit it is not display. How to make this VF page to editable in the edit page layout. 

 

thanks 

Best Answer chosen by Admin (Salesforce Developers) 
Wizno @ ConfigeroWizno @ Configero

You would have to create a whole custom VF Page to replace the Account page layout. 

 

You can use <apex:detail/>

 

Apex:Detail documentation

 

It will allow you to still have the same fields as you have in the standard layout, but you can also add your other custom elements. 

All Answers

sfdcfoxsfdcfox
You can't embed a VF page in a standard edit page.
Wizno @ ConfigeroWizno @ Configero

You would have to create a whole custom VF Page to replace the Account page layout. 

 

You can use <apex:detail/>

 

Apex:Detail documentation

 

It will allow you to still have the same fields as you have in the standard layout, but you can also add your other custom elements. 

This was selected as the best answer