Skip to main content
Hi there,

I have two customer VF page as seen below,

1. (My Case) <apex:page tabStyle="Case" action="/500?fcf=00B7F00000287BO" > </apex:page>

2. (Unassigned case)<apex:page showHeader="true" tabstyle="Case" action="/500?fcf=00B0l0000010NyT"> </apex:page>

Now to  I have to collide these two VF pages into one. So that the user able to see both"My case" and "Unassigned" case in a single window.

Can someone help me to achieve the above?

Thanks in advance.

 
3 Antworten
  1. 18. Sept. 2018, 04:52
    Create a two pages and include them in one page by using templaing  .. Refer this page

     

    Page 1 :

    <apex:page tabStyle="Case" action="/500?fcf=00B7F00000287BO">

    </apex:page>

    Page 2:

    <apex:page tabStyle="Case" action="/500?fcf=00B0l0000010NyT">

    </apex:page>

    final Page

    <apex:page>

    <apex:include name="page1"/>

    <apex:include name="page2"/>

    </apex:page>

     
0/9000