
My code to create this Visualforce page is simply:
<apex:page action="/sfc/#.search" tabStyle="partner_portal_tools__tab">
</apex:page>
The tab that contains this Visualforce page was setup as follows:
Tab Label: Search & Marketing Tools
Tab Name: partner_portal_tools
content: tools
Tab Style: People
Splash page custom link: None
However, when I access the Search & Marketing tools from the portal, the tab is not set as active. Am I doing something wrong?
12 risposte
I just tried and got it working.
First: you need to add to profile security that it can use this visual force page and it will work when you click on it.
this is my code in VF page:<apex:page tabStyle="partner_portal_tools__tab" standardStylesheets="true">
<!-- Begin Default Content REMOVE THIS -->
<h1>Congratulations</h1>
This is your new Page
<!-- End Default Content REMOVE THIS -->
</apex:page>