I've already see that, but how modify an repeating section with that ? I can read with that but for example can I do that : on("change:cogBase", function() {
getSectionIDs("repeating_comp", function(idarray) {
for(var i=0; i < idarray.length; i++) {
var ID = idarray[i];
getAttrs([
"repeating_comp_"+ID+"_compAptScoreSelectcompAptScoreSelect",
"repeating_comp_"+ID+"_compAptScoreShow",
"cogBase"
], function(values){
var cog = parseInt(values["cogBase"]);
setAttrs({
repeating_comp_ID_compAptScoreShow:cog
});
});
}
});
}); ?