I have a form with a repeating table and once submitted goes through 3 "sign-off" steps.
problem is while i can make "static" text fields read-only for these 3 views i cannot "lockdown" the repeating table so in theory a user could amend/delete/insert a new item in these views and this messes up the database records when the update db method is actioned.
i want the user to see these items but not alter them.
my other option is to try and update these rows but there is not a unique identifier for them and it still creates a problem if a user inserts / deletes rather than just updates an existing row. its like i would need to run the insert off these view buttons rather than update... but that then creates an issue with knowing what 'old' records to delete...
is there a solution to this issue?