Sorry for not being clear, and thanks for the reply.
I have to change up my vocabulary with forms/documents
If I take your example of a project/task list.
The tasks are maintained by a superuser who creates a new document for each item. Each document contains 3 fields and lists the place and category for the document (example: 1, hardware, itemName).
The project contains a collection of all of the tasks (uses a dblookup from a view that roders the items, and displays them in a checkbox group) that have to be completed for each task. The tasks are not able to be changed by the end user (only the superuser can maintain the list.
Currently the user checks each item, then it saves the value of the itemName into the multi value field
What I would like is for each task item to have the ability to add some additional information. I would like to have another field for comments that would be tied to each task item, and another checkbox. All of this data needs to be saved to the project document, as the task list operates almost like a profile document.
My thinking here is that dynamic fields in a repeat would be the answer. I use a repeat control to collect the data and display each itemName. I would then use dynamic field binding to have the field name for the comments be "itemName+comments". so when saving the document I add a comments field for each item.
I have done inview editing before(in xpages), but my previous experience has me accomplishing this with multiple documents, with one document for every row. This might present a problem in this case as I would be creating 50+ documents for each project.
Does this make sense?