ui.comments afterEditStop ?

The ui.comments widget is splendid, however I haven’t found any way to be triggered when a comment has been updated by the user : The API contains the beforeEditStart and afterEditStart events, but afterEditStop event does not exist.
Did I miss anything? How to update the contents of the database after a comment has been updated ?
Kind regards,

@lg87783
not sure about dedicated event
but try to useonDataUpdate event (undocumented).
or use scheme->$update method
https://snippet.webix.com/bv6l3avh

The example provided looks good ! Thanks!
I will try in my code and let you know.
You might have saved my day :wink:

The onDataUpdate event does the job in my application.
Thanks!