You need to sign in to do that
Don't have an account?

Input field not rendering on VF page
Hello,
Do not understand why my filed is not rendering when the condiion is met.
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
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
Try this