From c881f7d06c672e5079668ffcdf346cdc7d7e81b9 Mon Sep 17 00:00:00 2001 From: Krishna Kaviarasu Sethuramasamy Date: Thu, 13 Aug 2026 17:27:49 +0530 Subject: [PATCH 1/3] 1046848: update vue UG files using AI --- .../vue/how-to/get-current-word.md | 18 +++++++-------- .../vue/how-to/get-the-selected-content.md | 12 +++++----- .../hide-tool-bar-and-properties-pane.md | 12 +++++----- ...insert-page-number-and-navigate-to-page.md | 18 +++++++-------- .../how-to/insert-text-in-current-position.md | 22 +++++++++---------- 5 files changed, 41 insertions(+), 41 deletions(-) diff --git a/Document-Processing/Word/Word-Processor/vue/how-to/get-current-word.md b/Document-Processing/Word/Word-Processor/vue/how-to/get-current-word.md index f5dade034a..0d78d25f02 100644 --- a/Document-Processing/Word/Word-Processor/vue/how-to/get-current-word.md +++ b/Document-Processing/Word/Word-Processor/vue/how-to/get-current-word.md @@ -2,7 +2,7 @@ layout: post title: Get current word in Vue Document editor component | Syncfusion description: Learn here all about Get current word in Syncfusion Vue Document editor component of Syncfusion Essential JS 2 and more. -control: Get current word +control: Get current word platform: document-processing documentation: ug domainurl: ##DomainURL## @@ -48,9 +48,9 @@ const onCreated = function () { container.value.ej2Instances.documentEditor.selection.selectCurrentWord(); // To get the selected content as text - var selectedContentText = this.$refs.container.ej2Instances.documentEditor.selection.text; + var selectedContentText = container.value.ej2Instances.documentEditor.selection.text; // To get the selected content as SFDT (rich text) - var selectedContentSFDT = this.$refs.container.ej2Instances.documentEditor.selection.sfdt; + var selectedContentSFDT = container.value.ej2Instances.documentEditor.selection.sfdt; } @@ -103,13 +103,13 @@ export default { {% endhighlight %} {% endtabs %} -> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. +N> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. -To get the bookmark content as SFDT (rich text), please check this [`link`](../how-to/get-the-selected-content#get-the-selected-content-as-sfdt-rich-text) +To get the bookmark content as SFDT (rich text), check this [`link`](../how-to/get-the-selected-content#get-the-selected-content-as-sfdt-rich-text) ## Select and get the paragraph in current cursor position -You can use [`selectParagraph`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/selection#selectparagraph) API in selection module to select the current paragraph at cursor position and use [`text`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/selection#text-code-classlanguage-textstringcode) API or [`sfdt`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/selection#sfdt-code-classlanguage-textstringcode) API to get the selected content as plain text or SFDT from Vue Document Editor component. +You can use [`selectParagraph`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/selection#selectparagraph) API in selection module to select the current paragraph at cursor position and use the [`text`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/selection#text-code-classlanguage-textstringcode) API or [`sfdt`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/selection#sfdt-code-classlanguage-textstringcode) API to get the selected content as plain text or SFDT from Vue Document Editor component. The following example code illustrates how to select and get the current paragraph as SFDT. @@ -139,9 +139,9 @@ const onCreated = function () { container.value.ej2Instances.documentEditor.selection.selectParagraph(); // To get the selected content as text - var selectedContentText = this.$refs.container.ej2Instances.documentEditor.selection.text; + var selectedContentText = container.value.ej2Instances.documentEditor.selection.text; // To get the selected content as SFDT (rich text) - var selectedContentSFDT = this.$refs.container.ej2Instances.documentEditor.selection.sfdt; + var selectedContentSFDT = container.value.ej2Instances.documentEditor.selection.sfdt; } @@ -190,4 +190,4 @@ export default { {% endhighlight %} {% endtabs %} -> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. \ No newline at end of file +N> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. \ No newline at end of file diff --git a/Document-Processing/Word/Word-Processor/vue/how-to/get-the-selected-content.md b/Document-Processing/Word/Word-Processor/vue/how-to/get-the-selected-content.md index c2333256bc..c11737506e 100644 --- a/Document-Processing/Word/Word-Processor/vue/how-to/get-the-selected-content.md +++ b/Document-Processing/Word/Word-Processor/vue/how-to/get-the-selected-content.md @@ -16,7 +16,7 @@ You can get the selected content from the [Vue DOCX Editor](https://www.syncfusi You can use [`text`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/selection#text-code-classlanguage-textstringcode) API to get the selected content as plain text from Vue Document Editor component. -The following example code illustrates how to add search in google option in context menu for the selected text. +The following example code illustrates how to add Search in Google option in context menu for the selected text. {% tabs %} {% highlight html tabtitle="Composition API (~/src/App.vue)" %} @@ -132,9 +132,9 @@ export default { {% endhighlight %} {% endtabs %} -> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. +N> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. -You can add the following custom options using this API, +You can add the following custom options using this API: * Save or export the selected text as text file. * Search the selected text in Google or other search engines. @@ -230,10 +230,10 @@ export default { {% endhighlight %} {% endtabs %} -> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. +N> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. -You can add the following custom options using this API, +You can add the following custom options using this API: * Save or export the selected content as SFDT file. -* Get the content of a bookmark in Word document as SFDT by selecting a bookmark using [`selectbookmark`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/selection#selectbookmark) API. +* Get the content of a bookmark in Word document as SFDT by selecting a bookmark using [`selectBookmark`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/selection#selectbookmark) API. * Create template content that can be inserted to multiple documents in cursor position using [`paste`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/editor#paste) API. \ No newline at end of file diff --git a/Document-Processing/Word/Word-Processor/vue/how-to/hide-tool-bar-and-properties-pane.md b/Document-Processing/Word/Word-Processor/vue/how-to/hide-tool-bar-and-properties-pane.md index 621363d7ab..ee61d233bd 100644 --- a/Document-Processing/Word/Word-Processor/vue/how-to/hide-tool-bar-and-properties-pane.md +++ b/Document-Processing/Word/Word-Processor/vue/how-to/hide-tool-bar-and-properties-pane.md @@ -10,13 +10,13 @@ domainurl: ##DomainURL## # Hide tool bar and properties pane in Vue Document editor component -**Document editor container** provides the main document view area along with the built-in toolbar and properties pane. +**Document Editor Container** provides the main document view area along with the built-in toolbar and properties pane. **[Vue DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/vue-docx-editor) (Document Editor)** provides just the main document view area. Here, the user can compose, view, and edit the Word documents. You may prefer to use this component when you want to design your own UI options for your application. ## Hide the properties pane -By default, Document editor container has built-in properties pane which contains options for formatting text, table, image and header and footer. You can use [`showPropertiesPane`](https://ej2.syncfusion.com/vue/documentation/api/document-editor-container/documentEditorContainerModel#showpropertiespane) API in [`DocumentEditorContainer`](https://ej2.syncfusion.com/vue/documentation/api/document-editor-container/documentEditorContainerModel/) to hide the properties pane. +By default, Document Editor Container has built-in properties pane which contains options for formatting text, tables, images, headers, and footers. You can use [`showPropertiesPane`](https://ej2.syncfusion.com/vue/documentation/api/document-editor-container/documentEditorContainerModel#showpropertiespane) API in [`DocumentEditorContainer`](https://ej2.syncfusion.com/vue/documentation/api/document-editor-container/documentEditorContainerModel) to hide the properties pane. The following example code illustrates how to hide the properties pane. @@ -72,13 +72,13 @@ export default { {% endhighlight %} {% endtabs %} -> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. +N> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. ->Note: Positioning and customizing the properties pane in Document editor container is not possible. Instead, you can hide the exiting properties pane and create your own pane using public API's. +N> Positioning and customizing the properties pane in the Document Editor Container is not possible. Instead, you can hide the existing properties pane and create your own pane using public APIs. ## Hide the toolbar -You can use [`enableToolbar`](https://ej2.syncfusion.com/vue/documentation/api/document-editor-container/documentEditorContainerModel#enabletoolbar) API in [`DocumentEditorContainer`](https://ej2.syncfusion.com/vue/documentation/api/document-editor-container/documentEditorContainerModel/) to hide the existing toolbar. +You can use [`enableToolbar`](https://ej2.syncfusion.com/vue/documentation/api/document-editor-container/documentEditorContainerModel#enabletoolbar) API in [`DocumentEditorContainer`](https://ej2.syncfusion.com/vue/documentation/api/document-editor-container/documentEditorContainerModel) to hide the existing toolbar. The following example code illustrates how to hide the existing toolbar. @@ -134,7 +134,7 @@ export default { {% endhighlight %} {% endtabs %} -> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. +N> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. ## See Also diff --git a/Document-Processing/Word/Word-Processor/vue/how-to/insert-page-number-and-navigate-to-page.md b/Document-Processing/Word/Word-Processor/vue/how-to/insert-page-number-and-navigate-to-page.md index 0b8b740746..d42ef9ae83 100644 --- a/Document-Processing/Word/Word-Processor/vue/how-to/insert-page-number-and-navigate-to-page.md +++ b/Document-Processing/Word/Word-Processor/vue/how-to/insert-page-number-and-navigate-to-page.md @@ -10,13 +10,13 @@ domainurl: ##DomainURL## # Insert page number and navigate to page in Vue Document editor component -You can insert page number and navigate to specific page in [Vue DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/vue-docx-editor) (Document Editor) component by following ways. +You can insert page number and navigate to specific page in [Vue DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/vue-docx-editor) (Document Editor) component using the following ways. ## Insert page number -You can use [`insertPageNumber`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/editor#insertpagenumber) API in editor module to insert the page number in current cursor position. By default, Page number will insert in Arabic number style. You can change it, by providing the number style in parameter. +You can use [`insertPageNumber`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/editor#insertpagenumber) API in editor module to insert the page number in current cursor position. By default, the page number will be inserted in Arabic number style. You can change it by providing the number style in parameter. ->Note: Currently, Document Editor have options to insert page number at current cursor position. +N> Currently, Document Editor has options to insert page number at the current cursor position. The following example code illustrates how to insert page number in header. @@ -91,9 +91,9 @@ export default { {% endhighlight %} {% endtabs %} -> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. +N> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. -Also, you use [`insertField`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/editor#insertfield) API in Editor module to insert the Page number in current position +You can also use [`insertField`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/editor#insertfield) API in Editor module to insert the page number in the current position. ``` //Current page number @@ -103,9 +103,9 @@ this.$refs.container.ej2Instances.documentEditor.editor.insertField('PAGE \* MER ## Get page count -You can use [`pageCount`](https://ej2.syncfusion.com/vue/documentation/api/document-editor#pagecount) API to gets the total number of pages in Document. +You can use [`pageCount`](https://ej2.syncfusion.com/vue/documentation/api/document-editor#pagecount) API to get the total number of pages in the Document. -The following example code illustrates how to get the number of pages in Document. +The following example code illustrates how to get the number of pages in the Document. {% tabs %} {% highlight html tabtitle="Composition API (~/src/App.vue)" %} @@ -174,7 +174,7 @@ export default { {% endhighlight %} {% endtabs %} -> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. +N> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. ## Navigate to specific page @@ -245,4 +245,4 @@ export default { {% endhighlight %} {% endtabs %} -> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. \ No newline at end of file +N> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. \ No newline at end of file diff --git a/Document-Processing/Word/Word-Processor/vue/how-to/insert-text-in-current-position.md b/Document-Processing/Word/Word-Processor/vue/how-to/insert-text-in-current-position.md index 50ce550204..44c3e463e2 100644 --- a/Document-Processing/Word/Word-Processor/vue/how-to/insert-text-in-current-position.md +++ b/Document-Processing/Word/Word-Processor/vue/how-to/insert-text-in-current-position.md @@ -10,13 +10,13 @@ domainurl: ##DomainURL## # Insert text in current position in Vue Document editor component -You can insert the text, paragraph and rich-text content in [Vue DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/vue-docx-editor) (Document Editor) component. +You can insert text, paragraphs, and rich-text content in [Vue DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/vue-docx-editor) (Document Editor) component. ## Insert text in current cursor position You can use [`insertText`](https://ej2.syncfusion.com/vue/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. +The following example code illustrates how to add the text at the current cursor position. ``` // It will insert the provided text in current selection @@ -95,15 +95,15 @@ export default { {% endhighlight %} {% endtabs %} -Please check below gif which illustrates how to insert text in current cursor position on button click: +Please refer to the gif below which illustrates how to insert text in the current cursor position on button click: -![Insert text in current cursor position in Vue document editor](../images/insert_text.gif) +![Insert text in current cursor position in Vue Document Editor](../images/insert_text.gif) ## Insert paragraph in current cursor position -To insert new paragraph at current selection, you can can use [`insertText`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/editor#inserttext) API with parameter as `\r\n` or `\n`. +To insert a new paragraph at the current selection, you can use [`insertText`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/editor#inserttext) API with parameter as `\r\n` or `\n`. -The following example code illustrates how to add the new paragraph in current selection. +The following example code illustrates how to add the new paragraph in the current selection. ``` // It will add the new paragraph in current selection @@ -112,11 +112,11 @@ this.$refs.container.ej2Instances.documentEditor.editor.insertText('\n'); ## Insert the rich-text content -To insert the HTML content, you have to convert the HTML content to SFDT Format using [`web service`](../web-services-overview). Then use [`paste`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/editor#paste) API to insert the sfdt at current cursor position. +To insert the HTML content, you have to convert the HTML content to SFDT format using [`web service`](../web-services-overview). Then use [`paste`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/editor#paste) API to insert the SFDT at the current cursor position. ->Note: Html string should be well formatted html. [`DocIO`](https://help.syncfusion.com/file-formats/docio/html) support only well formatted XHTML. +N> The HTML string should be well-formatted HTML. [`DocIO`](https://help.syncfusion.com/file-formats/docio/html) supports only well-formatted XHTML. -The following example illustrates how to insert the HTML content at current cursor position. +The following example illustrates how to insert the HTML content at the current cursor position. * Send the HTML content to server side for SFDT conversion. Refer to the following example to send the HTML content to server side and inserting it in current cursor position. @@ -216,7 +216,7 @@ The following example illustrates how to insert the HTML content at current curs {% endhighlight %} {% endtabs %} -> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. +N> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. * Please refer the following code example for server-side web implementation for HTML conversion using DocumentEditor. @@ -238,4 +238,4 @@ The following example illustrates how to insert the HTML content at current curs } ``` ->Note: The above example illustrates inserting HTML content. Similarly, you can insert any rich-text content by converting any of the supported file formats (DOCX, DOC, WordML, HTML, RTF) to SFDT. \ No newline at end of file +N> The above example illustrates inserting HTML content. Similarly, you can insert any rich-text content by converting any of the supported file formats (DOCX, DOC, WordML, HTML, RTF) to SFDT. \ No newline at end of file From 13bce11d5be7416b03e0c85e3e51375ea06bbf66 Mon Sep 17 00:00:00 2001 From: Krishna Kaviarasu Sethuramasamy Date: Fri, 14 Aug 2026 11:34:34 +0530 Subject: [PATCH 2/3] 1046864: update title and h1 tag --- .../vue/how-to/hide-tool-bar-and-properties-pane.md | 4 ++-- .../vue/how-to/insert-page-number-and-navigate-to-page.md | 2 +- .../vue/how-to/insert-text-in-current-position.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Document-Processing/Word/Word-Processor/vue/how-to/hide-tool-bar-and-properties-pane.md b/Document-Processing/Word/Word-Processor/vue/how-to/hide-tool-bar-and-properties-pane.md index ee61d233bd..ad4bc5f4c4 100644 --- a/Document-Processing/Word/Word-Processor/vue/how-to/hide-tool-bar-and-properties-pane.md +++ b/Document-Processing/Word/Word-Processor/vue/how-to/hide-tool-bar-and-properties-pane.md @@ -1,6 +1,6 @@ --- layout: post -title: Hide tool bar and properties pane in Vue Document editor component | Syncfusion +title: Hide Toolbar and Properties Pane in Vue DOCX Editor | Syncfusion description: Learn here all about Hide tool bar and properties pane in Syncfusion Vue Document editor component of Syncfusion Essential JS 2 and more. control: Hide tool bar and properties pane platform: document-processing @@ -8,7 +8,7 @@ documentation: ug domainurl: ##DomainURL## --- -# Hide tool bar and properties pane in Vue Document editor component +# How to Hide Toolbar and Properties Pane in Vue DOCX Editor **Document Editor Container** provides the main document view area along with the built-in toolbar and properties pane. diff --git a/Document-Processing/Word/Word-Processor/vue/how-to/insert-page-number-and-navigate-to-page.md b/Document-Processing/Word/Word-Processor/vue/how-to/insert-page-number-and-navigate-to-page.md index d42ef9ae83..8110f23be7 100644 --- a/Document-Processing/Word/Word-Processor/vue/how-to/insert-page-number-and-navigate-to-page.md +++ b/Document-Processing/Word/Word-Processor/vue/how-to/insert-page-number-and-navigate-to-page.md @@ -1,6 +1,6 @@ --- layout: post -title: Insert page number and navigate to page in Vue Document editor component | Syncfusion +title: How to Insert Page Numbers in Vue DOCX Editor | Syncfusion description: Learn here all about Insert page number and navigate to page in Syncfusion Vue Document editor component of Syncfusion Essential JS 2 and more. control: Insert page number and navigate to page platform: document-processing diff --git a/Document-Processing/Word/Word-Processor/vue/how-to/insert-text-in-current-position.md b/Document-Processing/Word/Word-Processor/vue/how-to/insert-text-in-current-position.md index 44c3e463e2..6d0740e06d 100644 --- a/Document-Processing/Word/Word-Processor/vue/how-to/insert-text-in-current-position.md +++ b/Document-Processing/Word/Word-Processor/vue/how-to/insert-text-in-current-position.md @@ -1,6 +1,6 @@ --- layout: post -title: Insert text in current position in Vue Document editor component | Syncfusion +title: How to Insert Content at Cursor in Vue DOCX Editor | Syncfusion description: Learn here all about Insert text in current position in Syncfusion Vue Document editor component of Syncfusion Essential JS 2 and more. control: Insert text in current position platform: document-processing From 773373875e5eec260230a799daaae5f174d73505 Mon Sep 17 00:00:00 2001 From: Krishna Kaviarasu Sethuramasamy Date: Fri, 14 Aug 2026 11:49:02 +0530 Subject: [PATCH 3/3] 1046848: update h1 tag --- .../vue/how-to/insert-page-number-and-navigate-to-page.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Document-Processing/Word/Word-Processor/vue/how-to/insert-page-number-and-navigate-to-page.md b/Document-Processing/Word/Word-Processor/vue/how-to/insert-page-number-and-navigate-to-page.md index 8110f23be7..386e29f2a2 100644 --- a/Document-Processing/Word/Word-Processor/vue/how-to/insert-page-number-and-navigate-to-page.md +++ b/Document-Processing/Word/Word-Processor/vue/how-to/insert-page-number-and-navigate-to-page.md @@ -8,7 +8,7 @@ documentation: ug domainurl: ##DomainURL## --- -# Insert page number and navigate to page in Vue Document editor component +# How to Insert Page Numbers and Navigate in Vue DOCX Editor You can insert page number and navigate to specific page in [Vue DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/vue-docx-editor) (Document Editor) component using the following ways.