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
SFIBSSFIBS 

Adding Help Links to a custom visualforce page

I'm currently testing a new Visualforce page to display any related lists in the form of tabs. Unfortunately when I tried this out, the Help links disappeared.

 

Traditionally each related list has a help link (in the example below - the Contacts related list is shown), so why did the help link not transfer across?

Example

 

 

 

 

 

 

Here is a sample of the code that I used for my tabbed record page:

 

 

<apex:page standardController="Account" showHeader="true" > <style> .activeTab {background-color: #236FBD; color:white; background-image:none} .inactiveTab { background-color: lightgrey; color:black; background-image:none} </style> <apex:tabPanel switchType="client" selectedTab="tabdetails" id="AccountTabPanel" tabClass="activeTab" inactiveTabClass="inactiveTab" > <apex:tab label="Details" name="AccDetails" id="tabdetails" > <apex:detail relatedList="false" title="true" /> </apex:tab> <apex:tab label="Contacts" name="Contacts" id="tabContact"> <apex:relatedList subject="{!account}" list="contacts" /> </apex:tab>

 

 

 

Can the Help links be retrieved?

 

 

Hope someone out there can lend a hand.

 

 

ConejoConejo

I'm looking for an answer for the same question also.

 

Rich C.

G_G_

I am also looking in to this, any progress?

 

Edit: Nevermind this is a dead post from 2009