
Hi ! As you can see from this post my issue is now completely different from the title issue. I made this sheet worker, and it works fine, but the issue is that after rangefinal updates itself once, it won't update anymore.. if I change the attributes again, rangefinal will stay with its first value.. The only way to make it refresh again is to upload the HTML once again, but the same issue occurs after the first update. Any idea ? <input name="attr_rangefinal" class="faimtest" type="range" min="0" max="100" value=""> <input name="attr_testfaim" class="faimtest" type="number" min="0" value=""> <input name="attr_testfaim_max" class="faimtest" type="number" min="0" value=""> <script type="text/worker"> on("change:testfaim change:testfaim_max", function () { getAttrs(["testfaim","testfaim_max"], function(values) { let testfaim = parseInt(values.testfaim)||0; let testfaim_max = parseInt(values.testfaim_max)||0; let rangefinalnew = (testfaim/testfaim_max)*100; setAttrs({ "rangefinal": rangefinalnew }); }); }); </script>