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
Phuc Nguyen 18Phuc Nguyen 18 

Input field not rendering on VF page

Hello,
Do not understand why my filed is not rendering when the condiion is met.
<apex:pageBlockSection showHeader="true" rendered="true" columns="1" id="section">
                <apex:inputField required="true" value="{!Drawing__c.Wireless_Fiber__c}"/>  
                <apex:inputField id="proj" value="{!Drawing__c.Project__c}" rendered="{!IF(Drawing__c.Wireless_Fiber__c = 'Wireless',true,false)}"/>

So if the picklist value is wireless I thought the Drawing__c.Project__c would render but it does not. 
What am I doing wrong?

Thanks,
P
Uttpal_ChandraUttpal_Chandra
Hi ,

Try this
rendered="{!IF(Drawing__c.Wireless_Fiber__c == 'Wireless',true,false)}"