I've added a ckeditor editor instance to my asp.net application. Now, I want to capture when the user clicks on the save button in the ckeditor toolbar - but I haven't been able to find what event is triggered by ckeditor when the save button is triggered. Does anyone know?
+1
A:
I think this question that I asked a while ago may be relevant. One of the CKEditor developers suggested the getData
event.
Tim Down
2010-06-23 21:22:55
Thanks. I guess even before that step...what event is being triggered by the save button? I can't perform a getData unless I know in what event/function to place this.
davemackey
2010-06-23 21:24:34
I'm pretty sure there's no special CKEditor event triggered when you click the save button. There is definitely a `getData` event, not just a `getData()` method.
Tim Down
2010-06-23 21:59:37