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
hramanihramani 

HelpText on the VF for lightning Interface.

I have a VF page which contains a lot of fields with the helpText option. In the VF page, the helpText functionality is achieved using the below code.
When this page is opened in the lightning interface, the helptext option appears but when I place my mouse on the ‘?’ mark nothing appears.
Please help.


        <apex:outputPanel >
                    <apex:outputLabel >Start Date</apex:outputLabel>
                    <apex:outputPanel >
                        <span class="helpButton" id="startDate-_help"><img src="/s.gif" alt="" class="helpOrb" title=""/></span>
                       <div class="myHelpText">Please enter the start date and time for this {!classificationLabelLowerCase}</div> -->
             <script  type="text/javascript">sfdcPage.setHelp('startDate', 'Please enter the start date and time for this {!classificationLabelLowerCase}');</script>
                    </apex:outputPanel>
                </apex:outputPanel>