
Hi ... I found this thread for exactly what I want to do ... <a href="https://app.roll20.net/forum/post/9079666/help-call-sheetworker-on-repeating-item-creation" rel="nofollow">https://app.roll20.net/forum/post/9079666/help-call-sheetworker-on-repeating-item-creation</a> Problem for me though is that it does not seem to be working. I don't get the change event triggered when the ADD button is clicked. Here's the snippet of the fieldset. I'm trying to use "newlogrow" as the triggering select ... <fieldset class="repeating_lognotes"> <select name="attr_newlogrow" style="display: none;"> <option value="default" selected>default</option> <option value="default2">default2</option> </select> Here's the change event which is not triggering on the ADD button ... on('change:repeating_lognotes:newlogrow', function(eventInfo) { console.log("New row"); }); If I remove the display:none from the select style so that I can see the field on screen, then when I change the dropdown value to default2 then the trigger event fires, so I know that is working. Is this still a valid technique to detecting new rows? Thanks.