Skip to main content
Marcos Mellado a posé une question dans #Data Management
Inside our partners portal, I created a Visualforce page displaying the documents tab. I did this to be able to create a custom tab with a different name (instead of content we needed a different name in the tab)

 

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 réponses
  1. 23 janv. 2012, 22:37
    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>

0/9000