Reputation: 1
I have an iOS hybrid app, developed using, Phonegap 2.1.0.
I want to display MSWord file using InAppBrowser plugin. Word file is located on the server.
I tried for pdf, it worked, but not working for MS word (.doc) file. It gives message Unable to Read Document.
If I tried to open the word file is safari, it shows the same message.
I also tried openWith
plugIn from github, but no luck.
Can you please help me in this.
Upvotes: 0
Views: 431
Reputation: 1280
Try using google web embedded view for opening the doc file.
http://docs.google.com/gview?embedded=true&url="Your link to doc file"
as your word file is on server so just pass the link in above code.
Upvotes: 1