Just wanted to give some more detail on this problem.
When a user submits a new request (or creates a new item in the list), they type text into 3 text input boxes that live in a gallery. When they fill out the 3 boxes in the line and click Save, the line is concatenated (with a "|" in between each) and saved to a collection. The output of the collection is collected by the datacard value property. A quick example:
You have 3 text boxed in a single line/entry of the gallery:
ITEM DESCRIPTION QUANTITY
The user enters the first line, and clicks the Save icon...
ITEM DESCRIPTION QUANTITY
PC Dell 1
The user enters a second line, and clicks the Save icon...
ITEM DESCRIPTION QUANTITY
PC Dell 1
MAC Apple 2
The collection (and the datacard value) look like this...
PC|Dell|1
MAC|Apple|2
The user submits the form, and the above is save in the list's Item Detail column.
This is all fine if all I care about are new entries, but I'd like a user to see the item details when they open an item in the list. So, I need to de-concatenate the item's Item Detail record/field and somehow assign it as the default value of the appropriate text box within the gallery. To compound the issue, there maybe multiple lines in the record (as shown in the above example). I hope that clears up any questions, but if anyone has questions or comments, please speak up.
Thanks.