I’m using the kendo UI and need to track all changes made by the user. The scenarios include:
- Removing an image by backspace or delete.
- Using Backspace or Delete to remove text.
- Selecting text and deleting it by keyboard or mouse like (cut option using right-click context menu.).
- Copying text from outside and pasting into the editor (via keyboard or mouse).
- Pasting images or text using right-click context menu.
Is there a single common event or the best approach to handle all these cases?
I’ve checked the change event, but it doesn’t seem to fire for all scenarios (e.g., backspace or image removal). Should I use keyup, paste, or a combination of events? Or is there a recommended way to detect any DOM/content change in the editor?
Any guidance or best practices would be appreciated.