I'm setting the value of an input field like so hiddenInput.value = editor.getHTML();
I want to use appconnect from that moment again and use 'on changed' or 'on updated' etc.
But this doesn't seem to trigger any events.
Is there a way to do so?
I'm also working with dynamic data so I can't hard code certain input fields etc.
Everything gotta be dynamic.
EDIT: Got it :D:
hiddenInput.dispatchEvent(new Event("change", { bubbles: true }));