I have a repeating table in my form, which contains a contact
selector in each row. The selectors' contents is validated by C# code,
which does some checks and adds errors if the checks are unsuccessful (
this.Errors.Add(e.Site, errormsg);
).
Problem: Currently, if an error is detected in one of those selectors,
it is added to/removed from ALL contact selectors in the repeating
table.
Question: How can I attribute errors to the individual contact selectors in the repeating table?
Context: This form is supposed to be just a list of users who are to be granted access to a resource.