A docx document viewer

0
Hi is there a widget out there to viewer both a .docx and a pdf like the fileDocumentViewer
asked
2 answers
1

Did you see this one: https://appstore.mendix.com/link/app/Document%20Viewer

answered
1

If you want to preview files in the browser you could try building a solution that works with Office web viewer. You'll need to construct a url for the document that looks like:

http://view.officeapps.live.com/op/view.aspx?src=<document location="">

In addition you'll need to make the document available via a url. For more information see: this site

Another option would be to use some jquery to display the documents via the Google documents viewer, see this stack overflow site for more info.

Hope this helps you further in creating functionality to preview word documents in the browser.

answered