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
rwilcox@thinkingphones.comrwilcox@thinkingphones.com 

Custom picklist - users

I've created a custom field used on our Opportunities records, and I'd like that field to contain a list of users that I can multi-select from. How can I accomplish this?

 

I currently have the field setup as a lookup referencing (user) which works correctly, I want the field to be multi-select however.

MotiMoti

Example from VisualForce developer guide

 <apex:selectList value="{!countries}" multiselect="true">
            <apex:selectOptions value="{!items}"/>
 </apex:selectList><p/>

Is this what you are looking for ?