Hi SJochums,
it has no API to catch the button up, but you can catch the button command by the api below. It will fire when user click on anyone of the editor buttons.
- <script type="text/javascript">
- function CuteEditor_OnCommand(editor,command,ui,value)
- {
-
- if(command=="Undo")
- {
- alert("undo");
- }
- }
- </script>
Regards,
Ken