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
Tobias HaggeTobias Hagge 

HelpText in VF page

Is there a way to modify the following code so that I could display the native HelpText for all fields?
 
<apex:page StandardController="Opportunity" wizard="true" showHeader="false" sidebar="false">   

<apex:stylesheet value="{!$Resource.customCSS}"/>

<apex:form id="formId"> 

<apex:pageblock id="pbId" mode="inlineEdit" title="Opportunity Details">  

        <apex:pageBlockButtons location="top">
            <apex:commandButton value="Save" action="{!save}"/>
            <apex:commandButton value="Cancel" action="{!cancel}"/>
        </apex:pageBlockButtons>

    <apex:pageblocksection columns="2" id="pbsIs">  
        <apex:repeat value="{!$ObjectType.Opportunity.FieldSets.Opp_Details_django}" var="f">  
            <apex:outputfield value="{!Opportunity[f]}">  
            </apex:outputfield>
        </apex:repeat>  
    </apex:pageblocksection>
</apex:pageblock>   

</apex:form> 

</apex:page>
Problems to solve: ShowHeader must stay false (or to be hidden by CSS) and native HelpText only works for pageblocksectionitem.
RamuRamu (Salesforce Developers) 
Try this out and see if it works

http://salesforce.stackexchange.com/questions/21412/help-text-not-appearing-when-using-apexoutputfield-with-a-custom-label
Tobias HaggeTobias Hagge
The problem with this is that I currently don't use pageblocksectionitems and they way I render field sets I don't know how to implement them properly.