Is there a way to select multiple components and bulk edit their event handlers at the same time? I am working with numerous forms, and most if not all form fields have the same Change event handlers, and it would be really efficient if I could just bulk select them instead of assigning the same exact event handler per component one by one.
I would suggest then, making a query
with additionalScope
so you can make the handler code more generic, and react to what is passed in.
1 Like
Agreed with this suggestion! There is also a triggeredById variable.
If possible, you could trigger only 1 event handler for each form and then trigger the other events on success or within Javascript code.
Otherwise, there isn't a native solution for bulk selecting event handlers.