
I have this HTML code in my character sheet: <td class="sheet-dotLine">
<input type="radio" class="sheet-normal sheet-zero" name="attr_Time" value="0" checked /><span></span>
<input type="radio" class="sheet-normal" name="attr_Time" value="1" /><span></span>
<input type="radio" class="sheet-normal" name="attr_Time" value="2" /><span></span>
<input type="radio" class="sheet-normal" name="attr_Time" value="3" /><span></span>
<input type="radio" class="sheet-normal" name="attr_Time" value="4" /><span></span>
<input type="radio" class="sheet-normal" name="attr_Time" value="5" /><span></span>
</td> ... and the following in the Sheet Worker section at the bottom: on("change:time", function(eventInfo) {
console.log("UPDATING TIME");
console.log(eventInfo);
console.dir(eventInfo);
}); (Originally, I had "change:Time", but I just read that everything gets converted to lowercase for events; same thing trying "eventinfo" vs. "eventInfo".) I've confirmed that the Sheet Worker scripts are working in general (and the first console log triggers just fine). But when I change the Time attribute in the sheet, I get the following in my console log: UPDATING TIME sheetsandboxworker.js:438
<unavailable> sheetsandboxworker.js:439
"<unavailable>" sheetsandboxworker.js:440
No matter what I try, I can't seem to get eventinfo to work at all---even with a simple test like this. Any help is much appreciated!