Hi Terri,
1. You can configure a multi-value token for the controls you want, and then assign the multi-value token to the multi-value field. Currently, to configure a multi-value token does not allow on Wizard. There is a workaround method to configure it:
(a) Create a profile, choose action and define tokens for the controls you want. On wizard, it requires the unique name for tokens.
(b) After creating profile, on Laserfiche Connector configuration dialog, open the profile and specify the same name for the tokens. E.g. specify %(ProjectComponent) for two defined tokens. And then it will be a multi-value token.
<StepDef type="ReadControl">
<Attributes />
<Elements>
<Element name="%(ProjectComponent)">
<Attributes>
<Attribute name="Condition" value="/Root[1]/Pane[1]" />
<Attribute name="Javascript" value="return $.map($('#Project').find('option:selected'), function(i){return $(i).val();}).join(',');" />
<Attribute name="Property" value="Value" />
</Attributes>
<Children />
</Element>
</Elements>
</StepDef>
<StepDef type="ReadControl">
<Attributes />
<Elements>
<Element name="%(ProjectComponent)">
<Attributes>
<Attribute name="Condition" value="/Root[1]/Pane[1]" />
<Attribute name="Javascript" value="return $.map($('#Component').find('option:selected'), function(i){return $(i).val();}).join(',');" />
<Attribute name="Property" value="Value" />
</Attributes>
<Children />
</Element>
</Elements>
</StepDef>
2. If you only want to use each token for each control instead of multi-value token for the controls you want, you can refer to Field value on help document to assign the tokens to multi-value fields. It applies most of Laserfiche Connector actions except "Scan documents or pages into Web Access" action. "Scan documents or pages into Web Access" action can support configure multi-value fields on wizard, it uses a | character to separate multiple values.
Thanks,
Qinmei