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
SIVASASNKARSIVASASNKAR 

VISUAL FORCE PAGE I WANT PICKLIST IN TABLABEL

<APEX:TABPANEL>

<APEX:TAB>

<APEX:SELECTLIST>

<APEX:SELECTOPTION ITEMVALUE="A" ITEMLABEL="B">

<APEX:SELECTOPTION ITEMVALUE="G" ITEMLABEL="C">

<APEX:SELECTOPTION ITEMVALUE="F" ITEMLABEL="D">

<APEX:SELECTOPTION ITEMVALUE="D" ITEMLABEL="E">

</APEX:SELECTLIST>

</APEX:TAB>

</APEX:TABPANEL>

 

AravindBabu512AravindBabu512

Hi,

 

If your no of tabs is gonna remain static, that is during all instances if you are sure that the no of tabs will remain the same, then you can use the apex:tab for as many entries as you have.

 

If you need to generate from the select list, you need to use dynamic visual force components, Please check this link , you can get an idea on how to do this.

 

Thanks,

Aravind