You need to sign in to do that
Don't have an account?
Jackb1117
Custom field on VisualForce page not displaying all values
Hi All,
Newbie to Apex/VF and am having an issue I was hoping someone would be able to point me in the right direction. I recently inherited a Visualforce page that populates a dropdown from a custom field. When I add a new value to this picklist field it does not appear as an option to select on the Visualforce page, which is the behavior I was expecting. If feels like I must be missing something fairly straightforward, but have spent several hours trying to figure it out with no success.
Below is a snippet of the Apex that is bound to that dropdown on the Visualforce page, as well as a screencap of the custom field & the dropdown itself.
Thanks in advance for any advice you may be able to provide!
Newbie to Apex/VF and am having an issue I was hoping someone would be able to point me in the right direction. I recently inherited a Visualforce page that populates a dropdown from a custom field. When I add a new value to this picklist field it does not appear as an option to select on the Visualforce page, which is the behavior I was expecting. If feels like I must be missing something fairly straightforward, but have spent several hours trying to figure it out with no success.
Below is a snippet of the Apex that is bound to that dropdown on the Visualforce page, as well as a screencap of the custom field & the dropdown itself.
Thanks in advance for any advice you may be able to provide!
<apex:inputField id="Layer" value="{!Layer.Layer__c}" ></apex:inputField>
If yes, make sure to go into that record type, go to the filter list, and add the new value to Layer.Layer__c filter list.
Thx
All Answers
Can you please make sure that the picklist value is also added to the record types
I believe that the picklist value has been added to the record type- screencap below:
If yes, make sure to go into that record type, go to the filter list, and add the new value to Layer.Layer__c filter list.
Thx
Thanks for the reply! That seemed to do the trick- I had added it to the person account record type, but not the contact record type. Thank you!