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
Maros SitkoMaros Sitko 

Embedded page for pagelayout does not work in apex:detail

I put visualforce page as into pagelayout for opportunity (embeded page ). For show my problem, I created next visualforce page

<apex:page standardController="opportunity">
<apex:form >

   <apex:detail subject="{!opportunity.id}" relatedList="false" inlineEdit="true"/>

   <apex:detail subject="{!opportunity.id}" relatedList="false" inlineEdit="true"/>

</apex:form>
</apex:page>

If I go on this page, I see embedded page only for first apex:detail section, for second not. If I edited some field in second apex:detail section, the second section is reloaded, what is correct, but embedded page from the first apex:detail section is reloaded (why from first section, if I edited second?).

this is only easy example, in real page I do not show the same opportunity, but behavior is the same.
VikashVikash (Salesforce Developers) 
Hi,

Please follow the link
https://www.salesforce.com/us/developer/docs/pages/Content/pages_compref_detail.htm
http://salesforce.stackexchange.com/questions/17738/apex-detail-page-is-blank

Thanks
Vikash_SFDC