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
MrSalesForceMrSalesForce 

Embedded visual force page showing as a blank area on page

Hi,

 

Im trying to embed a custom visual force page on another visual force page. 

<apex:page standardController="Flight__c">
    <apex:outputText style="font-style:italic" value="This is {0} text with {1}.">
       <apex:param value="my"/>
       <apex:param value="arguments"/>
    </apex:outputText>
</apex:page>

 

Have used the page layout editor to insert that page on a section within the Flight__c object. When i open the flight i can see an section but with no content in it. 

 

What am i doing wrong?

 

MrSalesForceMrSalesForce

Is there any difference in adding the visual force page as a section using the page layout editor or including it as code on the visual force page?

 

Hilfe =)