
Hello the community, I've wrote this piece of code in order to collect data from a repeating section in the worker sheet section : on('sheet:opened',function(){ getSectionIDs("repeating_closecombatdisc", function(idarray) { for(var i=0; i < idarray.length; i++) { _.each(idarray, function(currentID) { getAttrs(["repeating_closecombatdisc_"+currentID+"_discname", "repeating_closecombatdisc_"+currentID+"_disc"], function(values) { console.log(currentID); console.log("Name : "+values["repeating_closecombatdisc_"+currentID+"_discname"]); console.log("Value : "+values["repeating_closecombatdisc_"+currentID+"_disc"]); }); }); } }); }); It works perfectly. In the end. I have the name and the value I want. Now, I'm trying to insert these values in an input select, in another part of my character sheet, outside the repeating section (id = -m37den82v-lfu5fukmj). <select name="attr_CurrentWeapon" class="sheet-select_2"> <option value="@{repeating_closecombatdisc_-m37den82v-lfu5fukmj_disc}">@{repeating_closecombatdisc_-m37den82v-lfu5fukmj_discname}</option> </select><input class="sheet-skill-off" type="number" name="attr_CurrentWeaponDisplay" value="@{CurrentWeapon}" disabled="true"/> At this point, I can't manage to make this works : - @{repeating_closecombatdisc_-m37den82v-lfu5fukmj_disc} - @{repeating_closecombatdisc_-m37den82v-lfu5fukmj_discname} are not resolved. Can you help me understand what's wrong ? Thanks