How to switch from one tab to another when button is clicked in apex:tabPanel?

How to switch from one tab to another when button is clicked in apex:tabPanel?

Sample Code:

Visualforce page:

<apex:page controller=”Sample”>
<apex:form >
    <apex:tabPanel id=”theTabPanel” value=”{!tabOpt}”>
       
<apex:tab label=”One” name=”One” id=”One”><apex:commandButton
value=”Go to Two” action=”{!switch}”/></apex:tab>

        <apex:tab label=”Two” name=”Two” id=”Two”>content for tab two</apex:tab>
    </apex:tabPanel>
</apex:form>   
</apex:page>

Apex Controller:

public class Sample
{
    public String tabOpt {get;set;}
    public String amount {get;set;}
    public Boolean curencyBool {get;set;}
   
    public sample()
    {           
    }     
   
    public void switch()
    {
        tabOpt = ‘Two’;
    }
}

Leave a Reply