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
Madhura BMadhura B 

Helptext doesn't appear with fieldsets

Hi,

I have used fieldsets in my visualforce page. Though the fields appear fine, the help text bubble doesn't appear on the layout. 
Can somebody please suggest a workaround?

My code looks like this 

<apex:pageBlockSection columns="2" title="Opportunity Information" collapsible="false" rendered="{!AND(NOT(isQuickCreate), (isStandard))}">
        <apex:repeat value="{!$ObjectType.Opportunity.FieldSets.FS_Opportunity_Detail}" var="fld">
          
           
           
           <apex:pageBlockSectionItem helpText="{!$ObjectType.Opportunity.fields[fld].inlineHelpText}" rendered="{!IF(AND(fld != 'Amount', fld != 'Amount_Temp__c'), true, false)}">
                    <apex:outputLabel value="{!fld.label}"/>
                    <apex:inputField value="{!Opportunity[fld]}" required="{!fld.Required}"/>
                   
                </apex:pageBlockSectionItem>
            
        </apex:repeat>
    </apex:pageBlockSection>

Many Thanks