Thanks for the responses. I used a bit of
several responses here and in theStackOverFlow.
1. I created the dojo Names PIcker and pointed it at a text control
called Approvers and set the MultipleSeparator to "," in the Approvers
Control
2. Add a Multi Line Text Box that I called ApproversDisplay, Set this to
read-only and don't bind it to the data object and the default value of
var Rel = getComponent('Approvers').getValue();
return @Implode(Rel,"\n")
which separates each value with a new line.
3. Set the onchange event on the Approvers control to do a Partial Refresh on ApproverDisplay.
4. in the source I set the style property display:none this does not hide the Name Picker like the visible property does.
style="display:none">
I'm pretty new to XPages so some might consider that there is a
better way, but after more hours than I really want to count !It Works!