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
Max Friel.ax1251Max Friel.ax1251 

Have multiselect selectlist show up preselected....

I am trying to load multi select picklists for a record however no matter what I seem to do the lists never show up with any of hte selectOptions selected...

 

<apex:selectList rendered="{!IF(aci['Type__c'] == 'MULTIPICKLIST','true','false')}" label="{!aci['Field_Label__c']}" value="{!plvMS[aci['Object_Name__c'] + '.' + aci['Field_Name__c']]}" size="5" multiselect="true">
	           	   	<apex:selectOptions value="{!plvVals[aci['Object_Name__c'] + '.' + aci['Field_Name__c']]}"/>
	           	   </apex:selectList>

 Where plvMS is a map of String String[].  The String[] have values loaded into them that match the values selectOptions that are given.  I must be missing something incredibly obvious here, thoughts? 

Best Answer chosen by Admin (Salesforce Developers) 
Max Friel.ax1251Max Friel.ax1251

Ignore me solution was ot use sfdc id to store the values in the map rather than fieldName.  Its been a long day, sorry for wasting anyone's time