
So I've been working on my own custom sheet for a few weeks now, and despite having a some experience with HTML and CSS, I'm strugling some with the sheetwork part. I was wondering if its possible to apply a value to all repeating attributes when a attribute from outside the repeating fieldset changes. To be more specific, I want to make that when a checkbox in the sheet is unchecked, it applies the value "0" to all chosen repeating inputs. Is there a way to maybe collect all existing IDs and apply this value to each of them? This is how my code looks so far: const prepedit = ["repeating_languages"] prepedit.forEach(function (prepedit) { on("change:edit_toggle sheet:opened", function(){ getAttrs(["edit_toggle"], function (repclosewindow){ let editvalue = String(repclosewindow.edit_toggle); if(editvalue === "0"){ setAttrs({ [prepedit+"_showcheck"]: 0}) }; }); }); }); And by the error the console is giving me (see below), i suppose i'd have to apply the value to each ID individually, and loop it until all have been changed. Though I have no idea how to do that. SHEET WORKER ERROR: You attempted to set an attribute beginning with 'repeating_' but did not include a Row ID or Attribute Name in repeating_languages_showcheck