diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/fields.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/fields.md index d1edef449..a4c6c8ee0 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/fields.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/fields.md @@ -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 @@ -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. @@ -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. diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/find-and-replace.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/find-and-replace.md index fd57be239..2dcd265f5 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/find-and-replace.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/find-and-replace.md @@ -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) diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/how-to/customize-ribbon.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/how-to/customize-ribbon.md index 6b250c33a..246efa3f5 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/how-to/customize-ribbon.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/how-to/customize-ribbon.md @@ -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) \ No newline at end of file +- [File menu Customization Demo](https://document.syncfusion.com/demos/docx-editor/asp-net-mvc/documenteditor/ribboncustomization#/tailwind3) \ No newline at end of file diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/how-to/insert-text-in-current-position.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/how-to/insert-text-in-current-position.md index a25aaf7bc..5bb095625 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/how-to/insert-text-in-current-position.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/how-to/insert-text-in-current-position.md @@ -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.