Hello, I am currently working on a character sheet for a homebrew system and I am stumbling upon some problems now. I have got a repeating section for armor, where every attribute gets a default value. <fieldset class="repeating_ruestungen"> <span><input type="checkbox" title="rs_an" name="attr_rs_an" value="1" unchecked></span> <span><input type="text" style="width: 8em" class="sheet-input" name="attr_rs_name" value="Rüstung"/></span> <span> <select style="width: 6em" name="attr_rs_zonen"> <option value="7" selected="selected">--Zonen--</option> <option value="0">R</option> <option value="1">A</option> <option value="2">B</option> <option value="3">R,A</option> <option value="4">R,B</option> <option value="5">R,A,B</option> <option value="6">K</option> </select> </span> <span><input type="number" style="width: 4em" name="attr_rs" value="0"></span> <span><input type="number" style="width: 4em" name="attr_rs_magisch" value="0"></span> <span><input type="number" style="width: 4em" name="attr_rs_rk" value="0"></span> <span><input type="number" style="width: 4em" name="attr_rs_at" value="0"></span> <span><input type="number" style="width: 4em" name="attr_rs_pa" value="0"></span> <span><input type="number" style="width: 4em" name="attr_rs_rz" value="0"></span> <span><input type="number" style="width: 4em" name="attr_rs_talent" value="0"></span> <span><input type="number" style="width: 4em" name="attr_rs_rw" value="0"></span> </fieldset> And I have got a sheetworker that is supposed to get some of the values of all rows and do something with them. on("change:repeating_ruestungen remove:repeating_ruestungen", function() { getSectionIDs("repeating_ruestungen", function(idArray) { var tmp; var tmp_list = []; for (var i=0; i < idArray.length; i++) { tmp = "repeating_ruestungen" + idArray[i] + "_rs_an"; tmp_list.push(tmp); tmp = "repeating_ruestungen" + idArray[i] + "_rs_zonen"; tmp_list.push(tmp); tmp = "repeating_ruestungen" + idArray[i] + "_rs"; tmp_list.push(tmp); tmp = "repeating_ruestungen" + idArray[i] + "_rs_magisch"; tmp_list.push(tmp); }; console.log(tmp_list); getAttrs(tmp_list, function(values) { console.log(values); var rs_list = Object.values(values); console.log(rs_list); for (var j=0; j < rs_list.length; j+=4) { /** do something **/ }; }); }); }); Since I put some logging into my code, here is the output: VM4:2692 (8) ['repeating_ruestungen-nj9mskfwkx8ln02e4w-_rs_an', 'repeating_ruestungen-nj9mskfwkx8ln02e4w-_rs_zonen', 'repeating_ruestungen-nj9mskfwkx8ln02e4w-_rs', 'repeating_ruestungen-nj9mskfwkx8ln02e4w-_rs_magisch', 'repeating_ruestungen-nj9mxtzbiaomz9gks3b_rs_an', 'repeating_ruestungen-nj9mxtzbiaomz9gks3b_rs_zonen', 'repeating_ruestungen-nj9mxtzbiaomz9gks3b_rs', 'repeating_ruestungen-nj9mxtzbiaomz9gks3b_rs_magisch'] 0: "repeating_ruestungen-nj9mskfwkx8ln02e4w-_rs_an" 1: "repeating_ruestungen-nj9mskfwkx8ln02e4w-_rs_zonen" 2: "repeating_ruestungen-nj9mskfwkx8ln02e4w-_rs" 3: "repeating_ruestungen-nj9mskfwkx8ln02e4w-_rs_magisch" 4: "repeating_ruestungen-nj9mxtzbiaomz9gks3b_rs_an" 5: "repeating_ruestungen-nj9mxtzbiaomz9gks3b_rs_zonen" 6: "repeating_ruestungen-nj9mxtzbiaomz9gks3b_rs" 7: "repeating_ruestungen-nj9mxtzbiaomz9gks3b_rs_magisch"length: 8[[Prototype]]: Array(0) VM4:2694 {repeating_ruestungen-nj9mskfwkx8ln02e4w-_rs_zonen: '2', repeating_ruestungen-nj9mskfwkx8ln02e4w-_rs_magisch: '3', repeating_ruestungen-nj9mxtzbiaomz9gks3b_rs_zonen: '2', repeating_ruestungen-nj9mxtzbiaomz9gks3b_rs_magisch: '3'} repeating_ruestungen-nj9mskfwkx8ln02e4w-_rs_magisch: "3" repeating_ruestungen-nj9mskfwkx8ln02e4w-_rs_zonen: "2" repeating_ruestungen-nj9mxtzbiaomz9gks3b_rs_magisch: "3" repeating_ruestungen-nj9mxtzbiaomz9gks3b_rs_zonen: "2" [[Prototype]]: Object VM4:2696 (4) ['2', '3', '2', '3'] 0: "2" 1: "3" 2: "2" 3: "3" length: 4 [[Prototype]]: Array(0) As you can see tmp_list is an array and has 8 enties. But when trying to get the values of these attributes I only get 4 of them. Also these values are wrong since both rows have different attributes. What I expected was something like ['1', '5', '3', '0', '0', '2', '0', '3'] since these are the values I see when opening the page. Funny enough I used almost the same coding with some other repeating sections and default values and they worked without problem. I do not see the problem right now. So hopefully someone out there is able to help. Thanks. Edit: Is seems getAttrs only gets the values from the row/id that was changed even through several ids are requested. So is there an method to forcibly clear the event object? Edit2: I tried a work around by adding an action button an changing the event trigger to on clicked. But now getAttrs does not return any kind of values. It is as if non of the variables aktually exists, so there is nothing to retrive or I do not have the right to retrive the values. I even tried renaming the section but ot no avail.