Hello, I have a very basic inventory thingie made with a repeating section, and I cant figure out why the corresponding change or remove scripts do not execute at all. All my other scripts in my already complex sheet work fine... I am stuck on this one. <fieldset class="repeating_sursoi"> <div class="divTable"> <div class="divTableBody"> <div class="divTableRow"> <div class="divTableCell cell" style="width:75%"> <input type="text" value="" name="attr_sursoi_objet" style="width:100%"/> </div> <div class="divTableCell cell centered"> <input type="number" min="0" step="0.1" value="0" name="attr_sursoi_enc"/> </div> </div> </div> </div> </fieldset> on("change:repeating_sursoi:sursoi_enc remove:repeating_sursoi", function(ev) { console.log("FIRED"); getSectionIDs("repeating_sursoi", function(idarray) { var attrs = []; var i; for (i = 0; i < idarray.length; i++) { attrs[i] = 'repeating_sursoi_' + idarray[i] + '_sursoi_enc'; } getAttrs(attrs, function(res) { var enctot = 0; for (i = 0; i < attrs.length; i++) { enctot += parseFloat(res[attrs[i]]); } setAttrs({sursoi_enc_total: enctot}); }); }); });