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
Amitkumar15Amitkumar15 

Help Text not displaying on Vf page for site page

Help text is not displaying on VF page for site.

 

Below is piece of code i am using:

 

<apex:pageBlockSectionItem helpText="{!$ObjectType.Opportunity.Fields.Decision__c.inlineHelpText}">

 

Can anyone please help on this?

Tim BarsottiTim Barsotti

I think this needs a label and field to display correctly.

 

Below works.

 

<apex:pageBlockSectionItem helpText="{!$ObjectType.Opportunity.Fields.Decision__c.inlineHelpText}">
   <apex:outputLabel value="Decision" id="decLabel" for="Decision" />
   <apex:inputField id="Decision" value="{!Opportunity.Decision__c}"/>
</apex:pageBlockSectionItem>

 

 

Amitkumar15Amitkumar15

Thanks for your responeTIm.

 

But still i am not able to see help text. any other chnages require.