Web word processor

Do you know of any free JavaScript framework that knows how to read and write doc, docx and odf documents like Google Docs? I want to download it and include it in my own web application. If there is no such structure, what is my alternative?

+4
source share
4 answers

I do not think that such a “structure exists”. It would be too difficult to develop features such as reading XML / zip (odf) files or doc files (including different versions / versions). Such a structure would require a server-side component.

Alternatives would be simple text editors such as tinyMCE. But they just save the data as text.

+5
source

tinyMCE is a good free javascript editor that you can use for free. However, it does not support any special document formats. I doubt you will find anything for free. Is this a free requirement?

EDIT: ran into phpLiveDocx , which seems to be able to do what you are looking for. hope that helps

+5
source

Feng Office (formerly OpenGoo) is an open source competitor for Google Apps. I have not used it yet, but when I searched the Internet it appeared several times. You can subscribe to the service or install it on your own PHP server.

+1
source
You can use this html tag <script type="text/javascript" src="<your installation path>/tinymce/tinymce.min.js"></script> <script type="text/javascript"> tinymce.init({ selector: "textarea", plugins: [ "advlist autolink lists link image charmap print preview anchor", "searchreplace visualblocks code fullscreen", "insertdatetime media table contextmenu paste" ], toolbar: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image" }); </script> enter code here <form method="post" action="somepage">enter code here <textarea name="content" style="width:100%"></textarea> </form> 
0
source

All Articles