I'm currently trying to hack together a demo of the CKEditor beta on Lotus Domino.
I think most of the features work. The only thing I lack is the upload integration for images/links/flash.
I can upload a file to the server using the dialogs, but I don't know what the server should post back to the browser so that CKEditor knows the image is uploaded.
In FCKeditor, I used this command: parent.OnUploadCompleted
What should I post for CKEditor?
I think most of the features work. The only thing I lack is the upload integration for images/links/flash.
I can upload a file to the server using the dialogs, but I don't know what the server should post back to the browser so that CKEditor knows the image is uploaded.
In FCKeditor, I used this command: parent.OnUploadCompleted
What should I post for CKEditor?
Re: Upload-integration with CKEditor beta
thanks
Re: Upload-integration with CKEditor beta
<script type="text/javascript">window.parent.CKEDITOR.tools.callFunction(1, 'path/to/file', '');</script>
but i'm getting an error like this now:
z._.filebrowserSe is undefined
any ideas?
thanks!