Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Document-Processing/Word/Word-Processor/asp-net-mvc/fields.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Document Editor has preservation support for all types of fields in an existing

## Adding Fields

You can add a field to the document by using [`insertField`](https://ej2.syncfusion.com/aspnetmvc/documentation/api/document-editor/editor#insertfield) method in `Editor` module.
You can add a field to the document by using [`insertField`](https://ej2.syncfusion.com/documentation/api/document-editor/editor/#insertfield) method in `Editor` module.

```typescript

Expand Down Expand Up @@ -43,7 +43,7 @@ The following type of fields are automatically updated in Document Editor.

## Get field info

You can get field code and field result of the current selected field by using [`getFieldInfo`](https://ej2.syncfusion.com/aspnetmvc/documentation/api/document-editor/selection#getfieldinfo) method in the `Selection` module.
You can get field code and field result of the current selected field by using [`getFieldInfo`](https://ej2.syncfusion.com/documentation/api/document-editor/selection/#getfieldinfo) method in the `Selection` module.

```typescript
//Gets the field information of the selected field.
Expand All @@ -54,7 +54,7 @@ N> For nested fields, this method returns combined field code and result.

## Set field info

You can modify the field code and field result of the current selected field by using [`setFieldInfo`](https://ej2.syncfusion.com/aspnetmvc/documentation/api/document-editor/editor#setfieldinfo) method in the `Editor` module.
You can modify the field code and field result of the current selected field by using [`setFieldInfo`](https://ej2.syncfusion.com/documentation/api/document-editor/editor/#setfieldinfo) method in the `Editor` module.

```typescript
//Gets the field information for the selected field.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,5 +142,5 @@ Using the exposed APIs, you can customize the find and replace functionality in

## See Also

* [Options pane](./dialog.md)
* [Options pane](./dialog)
* [Feature modules](./feature-module)
Original file line number Diff line number Diff line change
Expand Up @@ -250,4 +250,4 @@ You can use the `addItem` API in the Document Editor ribbon to add a new item. A

## Related Links

- [File menu Customization Demo](https://ej2.syncfusion.com/demos/#/material/document-editor/ribbon-customization)
- [File menu Customization Demo](https://document.syncfusion.com/demos/docx-editor/asp-net-mvc/documenteditor/ribboncustomization#/tailwind3)
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ You can insert the text, paragraph and rich-text content in Document Editor comp

## Insert text in current cursor position

You can use [`insertText`](https://ej2.syncfusion.com/aspnetmvc/documentation/api/document-editor/editor#inserttext) API in editor module to insert the text in current cursor position.
You can use [`insertText`](https://ej2.syncfusion.com/documentation/api/document-editor/editor/#inserttext) API in editor module to insert the text in current cursor position.

The following example code illustrates how to add the text in current selection.

Expand Down