On Friday, August 28, 2020 at 7:29:37 PM UTC+2, Gordan Krešić wrote: > > Are there any examples/best cases of using elemental2.dom.CustomEvent in > GWT > 2.9? >
https://developer.mozilla.org/en-US/docs/Web/Guide/Events/Creating_and_triggering_events The second example would be coded as: CustomEventInit<Double> eventInit = CustomEventInit.create(); eventInit.setDetail(time); CustomEvent event = new CustomEvent("build", eventInit); -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/247ae12b-6576-4eb3-a043-dd6f6b543894o%40googlegroups.com.
