New to this stuff. I'm trying to implement a button to let me toggle editing on my repeating elements, but I seemingly can't even get the script to recognize that the button is clicked. Here is what I've got: <fieldset class="repeating_abilities">
<button type="action" name="act_abilityEdit">edit</button>
</fieldset>
<script type="text/worker">
on("clicked:repeating_abilities:abilityEdit", function() {
console.log("hello");
});
</script> However, I'm getting no output to console, seems like my button either isn't recognizing that it is being clicked or the syntax for the javascript/event isn't correct -- I'm not sure where I'm going wrong here. Other buttons in the sheet are working just fine, as are on("change:repeating_abilities:attribute") functions. I can't figure out what I'm doing differenty from the example in the wiki here . Any help is appreciated! edit: <fieldset class="repeating_abilities">
<button type="action" name="act_edit">edit</button>
</fieldset>
<script type="text/worker">
on("clicked:repeating_abilities:edit", function() {
console.log("hello");
});
</script> ^This works? Apparently it just doesn't like capital letters????