
Here's a tough one: Say, for example, I have a list of repeated Skills on a character sheet. If the character picks the "Language" skill, I want to have a sub-field appear where they list the specific language as a text input, but if they pick any other skill, I want to hide it. If this wasn't in a repeated block, I could just apply an attribute that sets attr-is-language to 'on' or 'off', then bind an invisible checkbox input to it, then use the CSS :checked selector to show/hide it accordingly. However, I don't think that would work when there's a whole list of invisible checkboxes that might or might not be checked, and I haven't been able to get it to work in testing. Is there some other workaround for this edge case?