Good Day
I have a user who wants to do a reasonably complex selection using the Sketch Widget. Currently, I'm exposing the Draw Polygon, Rectangle and Circle functions, which react to the "create" event:
this._sketchWidget.on("create", async (event) => {})
Which is fine, that works and I can select the map segment using those thee tools. The point selector responds to my "click" handler, which is also working properly, but what does the Lasso Tool throw for an event?
It's not a click event, it's not the Sketch View create or update event, and according to the documentation, none of the other events would make any sense:
https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-Sketch.html#events-summary
Just so we're clear, this is the tool I'm talking about:

Are there any examples to show this feature working?
Thanks