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
Devang Rana 6Devang Rana 6 

Call Visualforce page in tabs.

Hello every one.
  I m trying to call my VF pages in TabPanel. but i dont have idea how to call that pages in this below tab.

User-added image
This is my VF PAGE CODE
<apex:page controller="TabTest">
 <apex:tabPanel switchType="client" selectedTab="{!ActiveTab}" id="slipTabPanel">
    <apex:tab label="Tab 1" name="tab1" id="tab1">
      Tab1
    </apex:tab>
    <apex:tab label="abb" name="abb" id="abb">
      Tab2 
    </apex:tab>
    <apex:tab label="Tab 3" name="tab3" id="tab3">
      Tab3
    </apex:tab>
 </apex:tabPanel>
</apex:page>
And i want to call this page in Tab

User-added image

please guid me.
Thanks in advance

 
Prithviraj_ChavanPrithviraj_Chavan
Hi Devang,
in tab add this code
<apex:include pageName="include"/>

 
Devang Rana 6Devang Rana 6
Hi Prithviraj_Chavan,
 
thanks for your help it is working
 
Prithviraj_ChavanPrithviraj_Chavan
Hi Devang Rana,
Please select as best answer if this helped you and others wont follow this question