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
Ranjith PunneliRanjith Punneli 

Rerender in tabpanel

Hi All,

 

I have a requirement to rerender a portion in a page which is under tabpanel.

 

I have a tabpanel and one of the tabs is pointing to a different page (profile page). Profile page contains two selectllist attributes in which one select list rerender based on selected value of first select list. However, this rerender is not working in actual page that contains tabpanel while it works when accessed separately.

 

<apex:tabPanel switchType="client" selectedTab="{!selectedTab}" headerClass="mainHeader" id="theTabPanel">
<apex:tab label="My Profile" name="Profile" id="tabProfile"> <apex:include pageName="ProfilePage" /> </apex:tab> </apex:tabPanel>