Welcome to the JavaScript feedback portal. We’re happy you’re here! If you have feedback on how to improve the JavaScript, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

6
Votes

Document editor following the below steps to render the document

  1. Internally the entire document content is converted in the C# side Docx/RTF to SFDT.
  2. Return to client side.
  3. In client side, entire document from the start to end is layouted(involved positioning, height calculation and pagination)
  4. Then finally, rendered.

Due to synchronous load, main thread is blocked, and browser became unresponsive until document is fully layouted.

To overcome this problem, we need to handle asynchronous document loading without blocking browser main thread.