25.1.42 • Published 4 days ago

@syncfusion/ej2-angular-documenteditor v25.1.42

Weekly downloads
1,661
License
SEE LICENSE IN li...
Repository
github
Last release
4 days ago

Angular Word Processor Component

The Angular Word Processor component is a feature rich UI component with document editing capabilities like Microsoft Word. Also known as the document editor, it is used to create, edit, view, and print Word documents. It provides all the common Word processing features including editing text, formatting content, resizing images and tables, finding and replacing text, bookmarks, tables of contents, track changes, commenting, restrict editing, printing, importing and exporting Word documents.

An example Word Processor server-side Web API projects for ASP.NET MVC, ASP.NET Core, and Java is available in GitHub which contains all the mandatory Web APIs for opening Word documents, paste with formatting, restrict editing, spell-checking, and saving documents other than SFDT/DOCX format. Apart from these operations, all the user interactions and editing operations run purely in the client-side provides much faster editing experience to the users.

Syncfusion provides a predefined Word Processor server docker image targeting ASP.NET Core 2.1 framework. You can directly pull this docker image and deploy it in server on the go. You can also create own docker image by customizing the existing docker project from GitHub.

Setup

Create an Angular Application

To create an example Angular app use the following commands.

git clone https://github.com/angular/quickstart.git quickstart
cd quickstart
npm install

Adding Syncfusion Word Processor package

All Syncfusion Angular packages are published in npmjs.com registry. To install Angular Document editor package, use the following command.

npm install @syncfusion/ej2-angular-documenteditor --save

Adding CSS references for Word Processor

Add CSS references needed for Document editor in the src/styles/styles.css file.

@import '../../node_modules/@syncfusion/ej2-base/styles/material.css';
@import '../../node_modules/@syncfusion/ej2-buttons/styles/material.css';
@import '../../node_modules/@syncfusion/ej2-inputs/styles/material.css';
@import '../../node_modules/@syncfusion/ej2-popups/styles/material.css';
@import '../../node_modules/@syncfusion/ej2-lists/styles/material.css';
@import '../../node_modules/@syncfusion/ej2-navigations/styles/material.css';
@import '../../node_modules/@syncfusion/ej2-splitbuttons/styles/material.css';
@import '../../node_modules/@syncfusion/ej2-dropdowns/styles/material.css';
@import '../../node_modules/@syncfusion/ej2-angular-documenteditor/styles/material.css';

Registering DocumentEditorContainer module

Import DocumentEditorContainer module into Angular application(app.module.ts) from the package @syncfusion/ej2-angular-documenteditor src/app/app.module.ts.

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { DocumentEditorContainerModule } from '@syncfusion/ej2-angular-documenteditor';
import { AppComponent } from './default.component';

/**
 * Module
 */
@NgModule({
    imports: [
        BrowserModule,
        DocumentEditorContainerModule
    ],
    declarations: [AppComponent],
    bootstrap: [AppComponent]
})
export class AppModule { }

Add Word Processor component

Modify the template in src/app/app.component.ts file to render the Document Editor component. Add the Angular Document Editor by using selector in template section of the app.component.ts file.

import { Component, OnInit } from '@angular/core';
import { ToolbarService } from '@syncfusion/ej2-angular-documenteditor';

@Component({
    selector: 'app-container',
    // specifies the template string for the DocumentEditorContainer component
    template: `<ejs-documenteditorcontainer serviceUrl="https://ej2services.syncfusion.com/production/web-services/api/documenteditor/" [enableToolbar]=true> </ejs-documenteditorcontainer>`,
    providers: [ToolbarService]
})
export class AppComponent implements OnInit {

    ngOnInit(): void {
    }
}

The web API ('https://ej2services.syncfusion.com/production/web-services/api/documenteditor/') is created specifically for our online demos. You should host web API on your side, refer the web service documentation for more information.

Supported frameworks

The Angular Word Processor (Document Editor) component is also offered in the following list of frameworks.

     JavaScript           React             Vue           ASP.NET Core    ASP.NET MVC  

Showcase samples

Key features

  • Document Authoring - Allows to create a document with supported elements and formatting options.
    • Supported elements - Supports document elements like text, inline image, table, hyperlink, fields, bookmark, table of contents, footnote and endnote, section, header, and footer.
    • Styles - Supports character and paragraph styles.
    • Editing - Supports all the common editing and formatting operations.
    • History - Supports options to perform undo redo operations.
    • Find and replace - Provides support to find and replace text within the document.
    • Track changes - Suppports tracking the content insertion and deletion.
    • Commenting - Supports adding a comment, replying to an existing comment or mark as resolved and more.
    • Form filling - Supports designing fillable forms in Word document and fill the forms.
    • Restrict editng - Supports restricting edit permission for a region in Word document and control what type of changes can be made to the document.
  • Export - Provides the options to export the documents in the client-side as Syncfusion Document Text (*.sfdt) and Word document (*.docx). With server-side library, exporting as other formats can be achieved.
  • Import - Provides the options to import the native Syncfusion Document Text (*.sfdt) format documents in the client-side. With server-side library, importing other formats can be achieved.
  • Print - Provides the options to print the documents.
  • Clipboard - Provides support to cut, copy, and paste rich text contents within the component. Also allows pasting simple text from other applications. Paste rich text from other applications using server-side library.
  • User interface - Provides intuitive user friendly interface to perform various operations.

    • Context menu - Provides context menu.
    • Dialog - Provides dialog for inserting elements such as hyperlink, table and formatting such as font, paragraph, list, style, table.
    • Options pane - Provides options pane to perform find and replace operations.

Support

Product support is available through the following mediums.

Changelog

Check the changelog here. Get minor improvements and bug fixes every week to stay up to date with frequent updates.

License and copyright

This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA. To acquire a license for 80+ Angular UI components, you can purchase or start a free 30-day trial.

A free community license is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers.

See LICENSE FILE for more info.

© Copyright 2024 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.

25.1.42-ngcc

4 days ago

25.1.42

4 days ago

25.1.41-ngcc

11 days ago

25.1.41

11 days ago

25.1.40-ngcc

18 days ago

25.1.40

18 days ago

25.1.39-ngcc

24 days ago

25.1.39

24 days ago

25.1.38-ngcc

1 month ago

25.1.38

1 month ago

25.1.37-ngcc

1 month ago

25.1.37

1 month ago

25.1.35-ngcc

2 months ago

25.1.35

2 months ago

24.2.9

2 months ago

24.2.9-ngcc

2 months ago

24.2.8

2 months ago

24.2.8-ngcc

2 months ago

24.2.7

2 months ago

24.2.7-ngcc

2 months ago

24.2.5

3 months ago

24.2.5-ngcc

3 months ago

24.2.4-ngcc

3 months ago

24.2.4

3 months ago

24.2.3

3 months ago

24.2.3-ngcc

3 months ago

24.1.47

3 months ago

24.1.47-ngcc

3 months ago

24.1.46

4 months ago

24.1.46-ngcc

4 months ago

24.1.45-ngcc

4 months ago

24.1.45

4 months ago

24.1.44

4 months ago

24.1.44-ngcc

4 months ago

24.1.43

4 months ago

24.1.43-ngcc

4 months ago

24.1.41

5 months ago

24.1.41-ngcc

5 months ago

23.2.7-ngcc

5 months ago

23.2.7

5 months ago

23.2.5-ngcc

5 months ago

23.2.6-ngcc

5 months ago

23.2.6

5 months ago

23.2.5

5 months ago

23.1.44-ngcc

6 months ago

22.2.7-ngcc

9 months ago

22.2.10-ngcc

9 months ago

22.2.11-ngcc

8 months ago

22.2.8-ngcc

9 months ago

22.1.38-ngcc

10 months ago

23.1.36-ngcc

8 months ago

23.1.43-ngcc

6 months ago

22.2.6-ngcc

9 months ago

22.1.41-ngcc

9 months ago

23.1.38-ngcc

7 months ago

23.1.41-ngcc

7 months ago

22.2.9

9 months ago

22.2.8

9 months ago

22.1.40-ngcc

9 months ago

22.2.7

9 months ago

22.2.6

9 months ago

22.2.5

9 months ago

22.1.38

10 months ago

22.1.39

10 months ago

22.1.36-ngcc

10 months ago

22.1.36

10 months ago

22.1.37

10 months ago

21.1.36-ngcc

10 months ago

21.1.36

10 months ago

22.1.40

9 months ago

22.2.11

8 months ago

22.2.12

8 months ago

22.1.41

9 months ago

22.2.10

9 months ago

21.1.42

10 months ago

22.2.9-ngcc

9 months ago

23.2.4

6 months ago

23.1.40

7 months ago

23.1.41

7 months ago

23.1.44

6 months ago

23.1.42

6 months ago

23.1.43

6 months ago

22.2.12-ngcc

8 months ago

23.1.39-ngcc

7 months ago

22.2.5-ngcc

9 months ago

23.1.42-ngcc

6 months ago

23.1.38

7 months ago

23.1.36

8 months ago

23.1.39

7 months ago

23.2.4-ngcc

6 months ago

23.1.40-ngcc

7 months ago

22.1.37-ngcc

10 months ago

22.1.39-ngcc

10 months ago

22.1.34-ngcc

11 months ago

21.2.9

11 months ago

22.1.34

11 months ago

21.2.9-ngcc

11 months ago

21.2.10

11 months ago

21.2.10-ngcc

11 months ago

21.2.8

11 months ago

21.2.4

12 months ago

21.2.3

1 year ago

21.2.6

12 months ago

21.2.5

12 months ago

21.2.3-ngcc

1 year ago

21.2.5-ngcc

12 months ago

21.2.8-ngcc

11 months ago

21.2.6-ngcc

12 months ago

21.2.4-ngcc

12 months ago

20.4.54

1 year ago

20.4.53

1 year ago

21.1.38-ngcc

1 year ago

21.1.41-ngcc

1 year ago

20.4.54-ngcc

1 year ago

20.4.53-ngcc

1 year ago

21.1.35

1 year ago

21.1.39

1 year ago

21.1.38

1 year ago

21.1.37

1 year ago

21.1.41

1 year ago

21.1.35-ngcc

1 year ago

21.1.37-ngcc

1 year ago

21.1.39-ngcc

1 year ago

20.4.52

1 year ago

20.4.52-ngcc

1 year ago

20.4.51

1 year ago

20.4.50

1 year ago

20.4.50-ngcc

1 year ago

20.4.51-ngcc

1 year ago

20.4.49

1 year ago

20.4.48

1 year ago

20.4.49-ngcc

1 year ago

20.4.48-ngcc

1 year ago

20.4.38-ngcc

1 year ago

20.4.42-ngcc

1 year ago

20.4.44

1 year ago

20.4.43

1 year ago

20.4.42

1 year ago

20.4.40

1 year ago

20.4.38

1 year ago

20.3.60

1 year ago

20.4.43-ngcc

1 year ago

20.4.40-ngcc

1 year ago

20.4.44-ngcc

1 year ago

20.3.60-ngcc

1 year ago

20.3.48-ngcc

2 years ago

20.3.57-ngcc

1 year ago

20.3.58-ngcc

1 year ago

20.3.59-ngcc

1 year ago

20.3.50-ngcc

2 years ago

20.3.59

1 year ago

20.3.58

1 year ago

20.3.57

1 year ago

20.3.56

1 year ago

20.3.52

2 years ago

20.3.50

2 years ago

20.3.49

2 years ago

20.3.48

2 years ago

20.3.56-ngcc

1 year ago

20.3.49-ngcc

2 years ago

20.3.52-ngcc

2 years ago

20.2.49-ngcc

2 years ago

20.2.48-ngcc

2 years ago

20.2.50

2 years ago

20.2.46-ngcc

2 years ago

20.2.50-ngcc

2 years ago

20.3.47-ngcc

2 years ago

20.3.47

2 years ago

20.2.46

2 years ago

20.2.48

2 years ago

20.2.49

2 years ago

20.2.45-ngcc

2 years ago

20.2.45

2 years ago

20.2.40-ngcc

2 years ago

20.2.43-ngcc

2 years ago

20.2.36-ngcc

2 years ago

20.2.37-ngcc

2 years ago

20.2.38-ngcc

2 years ago

20.2.44-ngcc

2 years ago

20.1.60

2 years ago

20.1.61

2 years ago

20.2.36

2 years ago

20.2.38

2 years ago

20.2.39

2 years ago

20.2.39-ngcc

2 years ago

20.2.40

2 years ago

20.2.43

2 years ago

20.2.44

2 years ago

20.1.52

2 years ago

20.1.55

2 years ago

20.1.56

2 years ago

20.1.57

2 years ago

20.1.58

2 years ago

20.1.59

2 years ago

20.1.47

2 years ago

20.1.48

2 years ago

20.1.50

2 years ago

20.1.51

2 years ago

19.4.56

2 years ago

19.4.54

2 years ago

19.4.55

2 years ago

19.4.41

2 years ago

19.4.43

2 years ago

19.4.42

2 years ago

19.4.47

2 years ago

19.4.48

2 years ago

19.4.50

2 years ago

19.4.52

2 years ago

19.4.53

2 years ago

19.3.53

2 years ago

19.3.56

2 years ago

19.3.54

2 years ago

19.3.55

2 years ago

19.4.38

2 years ago

19.4.40

2 years ago

19.3.48

3 years ago

19.3.47

3 years ago

19.3.45

3 years ago

19.3.46

3 years ago

19.3.44

3 years ago

19.3.43

3 years ago

19.2.62

3 years ago

19.2.60

3 years ago

19.2.59

3 years ago

19.2.57

3 years ago

19.2.56

3 years ago

19.2.55

3 years ago

19.2.51

3 years ago

19.2.49

3 years ago

19.2.48

3 years ago

19.2.47

3 years ago

19.2.46

3 years ago

19.2.44

3 years ago

19.1.69

3 years ago

19.1.67

3 years ago

19.1.66

3 years ago

19.1.65

3 years ago

19.1.64

3 years ago

19.1.63

3 years ago

19.1.59

3 years ago

19.1.58

3 years ago

19.1.57

3 years ago

19.1.56

3 years ago

19.1.55

3 years ago

19.1.54

3 years ago

18.4.49

3 years ago

18.4.48

3 years ago

18.4.47

3 years ago

18.4.46

3 years ago

18.4.44

3 years ago

18.4.43

3 years ago

18.4.42

3 years ago

18.4.41

3 years ago

18.4.39

3 years ago

18.4.35

3 years ago

18.4.34

3 years ago

18.4.33

3 years ago

18.4.32

3 years ago

18.4.31

3 years ago

18.4.30

3 years ago

18.3.53

3 years ago

18.3.52

3 years ago

18.3.51

3 years ago

18.3.50

3 years ago

18.3.48

3 years ago

18.3.47

3 years ago

18.3.44

4 years ago

18.3.42

4 years ago

18.3.40

4 years ago

18.3.35

4 years ago

18.2.58

4 years ago

18.2.57

4 years ago

18.2.55

4 years ago

18.2.54

4 years ago

18.2.47

4 years ago

18.2.46

4 years ago

18.2.45

4 years ago

18.2.44

4 years ago

18.1.56

4 years ago

18.1.54

4 years ago

18.1.53

4 years ago

18.1.52

4 years ago

18.1.48

4 years ago

18.1.46

4 years ago

18.1.45

4 years ago

18.1.44

4 years ago

18.1.43

4 years ago

18.1.42

4 years ago

18.1.36-beta

4 years ago

17.4.55

4 years ago

17.4.51

4 years ago

17.4.50

4 years ago

17.4.49

4 years ago

17.4.47

4 years ago

17.4.46

4 years ago

17.4.43

4 years ago

17.4.41

4 years ago

17.4.40

4 years ago

17.4.39

4 years ago

17.3.29

4 years ago

17.3.28

4 years ago

17.3.27

4 years ago

17.3.26

4 years ago

17.3.21

5 years ago

17.3.20

5 years ago

17.3.19

5 years ago

17.3.17

5 years ago

17.3.16

5 years ago

17.3.14

5 years ago

17.3.9-beta

5 years ago

17.2.51

5 years ago

17.2.49

5 years ago

17.2.48-beta

5 years ago

17.2.29-beta

5 years ago

17.2.47

5 years ago

17.2.46

5 years ago

17.2.41

5 years ago

17.2.40

5 years ago

17.2.39

5 years ago

17.2.36

5 years ago

17.2.35

5 years ago

17.2.34

5 years ago

17.2.28-beta

5 years ago

17.1.50

5 years ago

17.1.49

5 years ago

17.1.48

5 years ago

17.1.47

5 years ago

17.1.44

5 years ago

17.1.43

5 years ago

17.1.42

5 years ago

17.1.41

5 years ago

17.1.40

5 years ago

17.1.39

5 years ago

17.1.38

5 years ago

17.1.32-beta

5 years ago

16.4.54

5 years ago

16.4.53

5 years ago

16.4.52

5 years ago

17.1.1-beta

5 years ago

16.4.48

5 years ago

16.4.47

5 years ago

16.4.46

5 years ago

16.4.45

5 years ago

16.4.44

5 years ago

16.4.42

5 years ago

16.4.40-beta

5 years ago

16.3.34

5 years ago

16.3.33

5 years ago

16.3.30

6 years ago

16.3.29

6 years ago

16.3.27

6 years ago

16.3.24

6 years ago

16.3.23

6 years ago

16.3.21

6 years ago

16.3.18

6 years ago

16.3.17

6 years ago