You need to sign in to do that
Don't have an account?
Madhura 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
Many Thanks
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