Problem with autopopulation and get selected items

Jad,  I’ll pick up for Emily. 

Your pictures did not come through,  but here is a shot of help.  It looks like you have lookups to candidate from both the long list and the short list.  Here is the code you used to move values from candidate to long list: 

$.each(candidate.data,function(){<br>&nbsp; &nbsp; var row = ll.createRow({<br>&nbsp; &nbsp; &nbsp; &nbsp; additionalConditions: [<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { field: 'Candidate__c', value: this.Id, operator: '=', nameFieldValue: this.Name }<br>&nbsp; &nbsp; &nbsp; &nbsp; ]<br>&nbsp; &nbsp; });<br>});


In this new case your additional conditions statement needs to change as follows: 

$.each(candidate.data,function(){<br>&nbsp; &nbsp; var row = ll.createRow({<br>&nbsp; &nbsp; &nbsp; &nbsp; additionalConditions: [<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { field: 'Candidate__c', <b>value: this.CandidateId,</b> operator: '=', nameFieldValue: this.Name }<br>&nbsp; &nbsp; &nbsp; &nbsp; ]<br>&nbsp; &nbsp; });<br>});


You don’t want to move the LongList Record ID into the ShortList,  But rather the Candidate ID. 

Let me know if we are totally in left field here.