Building a financial disclosure and reporting module in an ASP.NET Core application using the Syncfusion Document Editor component. The system dynamically generates multi-page compliance documents that end-users must review, fill out, and export.
To ensure the generated documents meet regulatory standards, we partnered with a corporate tax consultancy to draft the boilerplate templates. They explicitly mandated that while users can input specific variables (like revenue numbers and dates), the core legal disclaimers, liability clauses, and tax calculation tables must be absolutely locked down to prevent any unauthorized tampering before the final PDF conversion.
I am struggling to implement this partial document protection within the DocumentEditorContainer.
Is it possible to apply read-only protection to specific paragraphs or table cells programmatically (perhaps using bookmarks) when generating the document, while leaving the rest of the text editable on the client side?
If paragraph-level locking isn't natively supported, is there a recommended event-handling workaround to block users from deleting or modifying specific text ranges once the .docx file is loaded into the web editor?
Any examples of implementing strict form-field-only editing would be very helpful.