You need to sign in to do that
Don't have an account?
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>
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