
Hey everyone! I was wondering, if sheetworker events support wildcards like on("change:skill_*",...) or some similar behaviour. I've read UniversalSheetWorker article and it is not quite what I'm looking for, since I have a list of a hundred skills and it would be painful (and ugly) to incorporate them all into universal list approach. Alternatively, I thought about redefining on() function to support wildcards or making some kind of wrapper over it. Is it even possible? I couldn't find any documentation on the internals of script sandbox (I assume sheetworkers run there too, since I couldn't find any mention of them on client-side). The ultimate solution would be to implement my own event listener and that wouldn't be a problem if I knew where the events are coming from. I'm not hands-on familiar with js but have programming background.