Track changes review panel automatically opening

Version 25.2.4

When I open a document that has tracking changes the panel opens automatically and I don't see how I can disable that.

How can I disable this feature?

Screenshot 2024-05-20 114229.png


3 Replies

BS Balamurugan Shanmugam Syncfusion Team May 21, 2024 10:07 AM UTC

Hi Andy,

Please use the below API to show/hide the review pane.

Code snippet:

// To hide review pane

container.documentEditor.showRevisions = false;


API reference:

https://ej2.syncfusion.com/documentation/api/document-editor#showrevisions

Regards,

Balamurugan S



AH Andy Herman May 21, 2024 06:44 PM UTC

Okay thanks, I tried using that method but I tried while initializing it and didn't work.


new ej.documenteditor.DocumentEditorContainer({

  showRevisions: false

})



DS Dhanush Sekar Syncfusion Team May 22, 2024 05:12 PM UTC

Hi Andy,


You are using Document Editor API in Document Editor container Component. We have attached the sample for your reference. 


Sample:  Rkm4tb (forked) - StackBlitz

Code snippet:

// To hide review pane

container.documentEditor.showRevisions = false;


Regards,

Dhanush S


Loader.
Up arrow icon