Hi all,
I have a connundrum trying to set an Expression Box to a concatenated string based on user selections from a Multiple-Selection List Box. I'll try my best to describe the issue as follows:
I have an external data source that is populated when the form loads. It's structure is:
<myFields>
<dataFields>
<d:UserGroups @UserGroupID="int" @Description="string" @ManagersEmail="string">
This structure is used to populate a Multiple-Selection List Box using the @UserGroupID for the checkbox value and the @Description for the checkbox text. This is working fine... happy days! :)
So, beneath this I want to have an Expression Box that includes all the "checked" checkboxes from the above Multi-Selection List Box, adding the @ManagersEmail + ";". So when a user selects item 1 from the list, the corresponding email address stored in the @ManagersEmail is concatenated to the expression box text, thus generating an email recipients list.
Hopefully that makes a bit of sense.
Thanks in advance!