I'm working on a form that will go out to multiple users depending on the options selected from a dropdown in a collection, but each row's data will be relevant to only certain users. So if the initial submitter adds two rows to the collection and selects 'Option 1' in the first row and 'Option 2' in the second row, an inclusive gateway will send the form for approval to 'Approver 1' and 'Approver 2'.
I have that part working fine, but where I'm having trouble is that I would like for 'Approver 1' to only be able to manipulate fields on the row where 'Option 1' was selected with the others being disabled, and 'Approver 2' to only be able to manipulate fields on the row where 'Option 2' was selected. The only similar issues I've been able to find on the site here were people wanting to disable specific fields, but I want to enable/disable everything in a particular row based on the selection in the first field.
I could just forsake some of the functionality that I want and make the entire form read only to the approvers, but besides not wanting to lose the functionality of letting each approver make changes to their relevant area, I'm tired of fighting all of the js that gets disabled when you make the form read-only. I really wish it was possible to make the form read-only for the actual user, but still allow all of your js to run properly.