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
Riby VargheseRiby Varghese 

Input field label is not working

This is my code
 <apex:pageBlockSection title="Loyality Changes" columns="2" collapsible="false">
                
                <apex:actionRegion >
                    <apex:outputLabel value="Action" for="Action" style="float:left"/>&nbsp;
                    <apex:inputfield value="{!case.Action__c}" id="Action">
                        <apex:actionSupport event="onchange" rerender="ProdFamilyModel"/> 
                    </apex:inputfield>
                </apex:actionRegion>
                 
        <apex:outputPanel id="ProdFamilyModel">
                
               <apex:inputField    value="{!case.Password__c}"  rendered="{!IF(case.Action__c == 'Password Reset', true, false)}"/>         
              <apex:inputField  value="{!case.Pin__c}" rendered="{!IF(case.Action__c == 'Pin Reset', true, false)}" />

       </apex:outputPanel>          
                 
              
                 
      </apex:pageBlockSection>
Manj_SFDCManj_SFDC
can you  please mention which inout field isnt getting displayed