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
sf.dev.ax1103sf.dev.ax1103 

Display help text on force.com sites

Hi All,

 

     I need to display standard help text on force.com sites.Any Help plzz?

 

<apex:page standardController="Request__C" extensions="RequestCtrl" showHeader="false" sidebar="false" >
<apex:pagemessages />
<apex:form >
<apex:pageBlock >

<apex:pageBlockSection title="INFORMATION" columns="2">
<apex:inputField value="{!Request__c.What_is_your_age__c}"/>

<apex:pageBlockSectionItem HelpText="{$ObjectType.Request__c.fields.Name__c.inlineHelpText}">

<apex:inputText value="{!Request__c.Name__c}"/>
</apex:pageBlockSectionItem>


</apex:pageBlockSection>

<apex:pageBlockSection columns="2">
<apex:commandButton action="{!save}" value="Save"/>
</apex:pageBlockSection>

</apex:pageBlock>
</apex:form>
</apex:page>