Open eiswind opened 5 years ago
In JSDOMBuilder event listeners get added by setEvent.
else -> path.last().setEvent(event, value)
In case of a vaadin-text-field, that needs a custom 'change' event however this does not work. It does work when I add the listener like
else -> path.last().addEventListener(event, value)
Is there a chance to add a method like this in JSDOMBuilder/TagConsumer?
In JSDOMBuilder event listeners get added by setEvent.
In case of a vaadin-text-field, that needs a custom 'change' event however this does not work. It does work when I add the listener like
Is there a chance to add a method like this in JSDOMBuilder/TagConsumer?