layout | title | description | platform | control | documentation | domainurl |
---|---|---|---|---|---|---|
post |
Comments in Angular Document editor component | Syncfusion |
Learn here all about Comments in Syncfusion Angular Document editor component of Syncfusion Essential JS 2 and more. |
ej2-angular |
Comments |
ug |
Document Editor allows you to add comments to documents. You can add, navigate and remove comments in code and from the UI.
Comments can be inserted to the selected text.
this.documentEditor.editor.insertComment("Test comment");
Next and previous comments can be navigated using the below code snippet.
//Navigate to next comment
this.documentEditor.selection.navigateNextComment();
//Navigate to previous comment
this.documentEditor.selection.navigatePreviousComment();
Current comment can be be deleted using the below code snippet.
this.documentEditor.editor.deleteComment();
All the comments in the document can be deleted using the below code snippet.
this.documentEditor.editor.deleteAllComments();
Document Editor provides support for protecting the document with CommentsOnly
protection. In this protection, user allowed to add or edit comments alone in the document.
Document editor provides an option to protect and unprotect document using enforceProtection
and stopProtection
API.
The following example code illustrates how to enforce and stop protection in Document editor container.
import { Component, ViewEncapsulation, ViewChild } from '@angular/core';
import { DocumentEditorContainerComponent, ToolbarService } from '@syncfusion/ej2-angular-documenteditor';
@Component({
selector: 'app-container',
// specifies the template string for the Document Editor component
template: `<div><button ejs-button (click)="protectDocument()" >Protect</button>
<button ejs-button (click)="unProtectDocument()" >Unprotect</button>
<ejs-documenteditorcontainer #document_editor serviceUrl="https://ej2services.syncfusion.com/production/web-services/api/documenteditor/" height="600px" style="display:block" [enableToolbar]=true> </ejs-documenteditorcontainer></div>`,
encapsulation: ViewEncapsulation.None,
providers: [ToolbarService]
})
export class AppComponent {
@ViewChild('document_editor')
public container: DocumentEditorContainerComponent;
public protectDocument(): void {
//enforce protection
container.documentEditor.editor.enforceProtection('123', 'CommentsOnly');
}
public unProtectDocument(): void {
//stop the document protection
container.documentEditor.editor.stopProtection('123');
}
}
Comment only protection can be enabled in UI by using Restrict Editing pane
Note: In enforce Protection method, first parameter denotes password and second parameter denotes protection type. Possible values of protection type are
NoProtection |ReadOnly |FormFieldsOnly |CommentsOnly
. In stop protection method, parameter denotes the password.