I want to be able to text edit .docx file but also utilize form creation
i tried to enableOfficeEditing it works and i can text edit but i can use form creation, so i want to be able to text edit .docx file and also use form creation
Thank you for posting your question to our forum. We will provide you with an update as soon as possible.
Hello Marwan
Unfortunately, we do not support this functionality at the moment. Office editing mode will not allow you to add annotations currently.
Best Regards,
Darian
Hey Darian thanks for answering my question, is there any way to render all files fomats (doc,docx,pptx) as pdf so i can see the annotation and also can add text edit feature to it ? because without enabling the office feature i couldn’t find a way to text edit in a .docx file
Hello Marwan,
You can use the loadAsPDF option under the WebViewer constructor.
WebViewer({
loadAsPDF: true;
}, document.getElementById('viewer'))
This is also available for loadDocument.
instance.UI.loadDocument(file, { loadAsPDF: true });
Best Regards,
Darian