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

Campaign member status values not appearing in Visualforce page
Over the course of years of creating campaigns with different member status, we have about 80+ status in the "Status" standard field on the Campaign Member object. I have created a simple custom visualforce page that uses a pageblock table to list member from a campaign and I have enable inline editing so users can double click on the fields to edit.
When users click on the Status field only about 50% of the available status appear. Any new status that is created will simply not appear in the dropdownlist
When users click on the Status field only about 50% of the available status appear. Any new status that is created will simply not appear in the dropdownlist
<apex:column style="width:8%;height:30px"> <apex:outputField value="{!record.Status}"> <apex:inlineEditSupport event="ondblClick" showOnEdit="saveButton"/> </apex:outputField> <apex:facet name="header">Status</apex:facet> </apex:column>
One option to make all the status appear was to deactivate the custom record types and use only the Master. Since this was not a path we could take, we had to build a custom apex method / custom picklist for the visualforce page.
All Answers
I would suggest make sure your are querying the Status field in your Query.
Could you please share the full VFP and it's controller code.
Thanks
Shashikant
Thanks
Shashikant
One option to make all the status appear was to deactivate the custom record types and use only the Master. Since this was not a path we could take, we had to build a custom apex method / custom picklist for the visualforce page.