So, I've got an idea for a multi-select option in a browser enabled form. Let me lay it out and see what you guys think.
I've got a Sharepoint list, with all of the possible options, that I want people to be able to select.
At this point on the form, I create a data connection to the list. I also create a repeating section with two fields: one for the text and one for the checkbox.
On the form load (this is where things get a bit sketchy), I programmatically get the items from the Sharepont list. I add new rows to the repeating section for each item in the list, and then after it's all said and done, I lock the list so the user can't add any more rows.
My two big problems:
1.) How can I use the data connections on the form to access the items in the Sharepoint List.
2.) How do I create the rows themselves within the repeating section (this is actually less pressing, since I've seen some other articles here for it)
Anyone have any thoughts on this?