mbc66
June 22, 2021, 5:26pm
2
There is a lot of complexity in your .rp file… Not clear what is really necessary, what might be past attempts and no longer needed… Maybe some more granular explanation could help.
A few threads that might help you in general with solutions that work:
Hi!
Rather than adding and removing rows in the tags repeater, it’s better to treat it the same way as you do your list repeater: have all the items in the dataset from the start and filter them on the value of Item.Tagged. So basically both the checkbox in the list repeater and the X in the tags repeater behave the exact same way.
I updated your file with this approach, and changed the action of the Select all checkbox. Note that the list repeater no longer needs the tagwidth column in its da…
I’ve found that controlling/maintaining checkboxes in repeaters can be tricky, especially when they need to be set from outside as well as inside the repeater, and/or support row updates, filters, sorting, etc. By default a checkbox will change its own selection state (“true” = checked; “false” = unchecked) on click. If you need to “remotely” change this selection state for a unique row (from outside the repeater) and/or maintain its selection state when a repeater gets “touched” then things get…