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
upendra naiduupendra naidu 

When i am converting salesforce classic to lightning Account detail page help text will not display in lightning?

Hi,

when i am converting classic to lightning account detail page helptext will be displayed fine in classic but not displayed in lightning.

User-added imagethis is classic mode
User-added imagethis is lightning view
please help me,i have to posted classic view of VF page

<apex:form >      
        <apex:pageBlock helpTitle="Alliance Master List" helpUrl="/{!$Label.Alliance_List}">      
            <apex:outputpanel title="{!$Label.Student_Section}">
                <apex:pageBlockSection columns="2" title="Student" id="std" collapsible="false">           
                </apex:pageBlockSection>
            </apex:outputpanel>
            <apex:pageBlockSection >
                <apex:commandButton onclick="OpentabEmpStd();" value="Edit Student" rerender="Refresh"/>                
                <apex:pageBlockSectionItem ></apex:pageBlockSectionItem>
                <apex:pageBlockSectionItem helpText="{!$ObjectType.Alliance_Student_Map__c.fields.Employer_Student__c.InlineHelpText}">
                    <apex:outputLabel style="font-weight:bold">Employer {Employer - Student} </apex:outputLabel>
                    <apex:outputLabel >{!Employer}</apex:outputLabel>
                </apex:pageBlockSectionItem>                
                <apex:pageBlockSectionItem helpText="{!$ObjectType.Alliance_Student_Map__c.fields.Professional_Organization_Student__c.InlineHelpText}">
                    <apex:outputLabel style="font-weight:bold">Professional Organization</apex:outputLabel>
                    <apex:outputLabel >{!ProOrg}</apex:outputLabel>
                </apex:pageBlockSectionItem>              
                <apex:pageBlockSectionItem >
                    <apex:outputLabel style="font-weight:bold">Other Employer</apex:outputLabel>
                    <apex:outputField value="{!stdAlliance.Other_Employer__c}"></apex:outputField>
                </apex:pageBlockSectionItem>                
                <apex:pageBlockSectionItem helpText="{!$ObjectType.Alliance_Student_Map__c.fields.Community_College__c.InlineHelpText}">
                    <apex:outputLabel style="font-weight:bold">Community College</apex:outputLabel>
                    <apex:outputLabel >{!Comcol}</apex:outputLabel>
                </apex:pageBlockSectionItem>                
                <apex:pageBlockSectionItem helpText="{!$ObjectType.Alliance_Student_Map__c.fields.Job_Title_Description__c.InlineHelpText}">
                    <apex:outputLabel style="font-weight:bold">Job Title/Description</apex:outputLabel>
                    <apex:outputField value="{!stdAlliance.Job_Title_Description__c}"></apex:outputField>
                </apex:pageBlockSectionItem>
                <apex:pageBlockSectionItem >
                    <apex:outputLabel style="font-weight:bold">Alliance Outreach Program</apex:outputLabel>
                    <apex:outputLabel value="{!stdAlliance.Alliance_Outreach_Program__c}"></apex:outputLabel>
                </apex:pageBlockSectionItem>
            </apex:pageBlockSection>

thanks for advanced..
Venkat BurriVenkat Burri
Hi Upendra, I am facing a similar issue too. How did you fix it? Could you please help thanks.