You need to sign in to do that
Don't have an account?

Include one Vf page on another
Hi,
I am trying to add one Vf page on another Vf page. this is my page.
i want to add another VF page called "Value" on this with this size
Height (pixels): 50
Width(pixels): 100%
Please help.
I am trying to add one Vf page on another Vf page. this is my page.
<apex:page standardController="Account" extensions="Accountsextension" > <apex:pageBlock title="Account History" id="Account_History"> <apex:pageBlockTable value="{!acchistlist}" var="accounthistory" rows="1000"> <apex:column value="{!accounthistory.createddate}"/> <apex:column value="{!accounthistory.createdby.name}"/> <apex:column value="{!accountHistory.field}"/> <apex:column value="{!accounthistory.oldvalue}"/> <apex:column value="{!accounthistory.newvalue}"/> </apex:pageBlockTable> </apex:pageBlock> </apex:page>
i want to add another VF page called "Value" on this with this size
Height (pixels): 50
Width(pixels): 100%
Please help.
For more reference, please refer:
https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_compref_include.htm
All Answers
For more reference, please refer:
https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_compref_include.htm
Hi, you can use <apex:iframe>
For reference, please check out this https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_compref_iframe.htm