Skip to content

Commit 597fbe4

Browse files
Merge pull request #2086 from Syncfusion-Content/hotfix/hotfix-v32.1.19
DOCINFRA-2341_merged_using_automation
2 parents d1652ca + 70f8b37 commit 597fbe4

4 files changed

Lines changed: 47 additions & 1 deletion

File tree

Document-Processing-toc.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2958,6 +2958,7 @@
29582958
<li><a href="/document-processing/word/word-processor/asp-net-mvc/table-format">Working with Table Formatting</a></li>
29592959
<li><a href="/document-processing/word/word-processor/asp-net-mvc/section-format">Working with Section Formatting</a></li>
29602960
<li><a href="/document-processing/word/word-processor/asp-net-mvc/comments">Comments</a></li>
2961+
<li><a href="/document-processing/word/word-processor/asp-net-mvc/track-changes">Track Changes</a></li>
29612962
<li><a href="/document-processing/word/word-processor/asp-net-mvc/fields">Fields</a></li>
29622963
<li><a href="/document-processing/word/word-processor/asp-net-mvc/form-fields">Form fields</a></li>
29632964
<li><a href="/document-processing/word/word-processor/asp-net-mvc/clipboard">Clipboard</a></li>

Document-Processing/Word/Word-Processor/angular/ribbon.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,28 @@ You can switch between the classic **Toolbar** and the new **Ribbon** UI, and yo
1616

1717
## Enable Ribbon Mode
1818

19-
To enable Ribbon in Angular Document Editor, use the [`toolbarMode`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/#toolbarmode) property of `DocumentEditorContainer`. The available toolbar modes are:
19+
To enable Ribbon in Angular Document Editor, use the [`toolbarMode`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container/index-default#toolbarmode) property of `DocumentEditorContainer`. The available toolbar modes are:
2020

2121
- **'Toolbar'** - The traditional toolbar UI.
2222
- **'Ribbon'** - The Ribbon UI, which provides a tabbed interface with grouped commands.
2323

2424
By default, `toolbarMode` is `Toolbar`.
2525

26+
To use Ribbon mode in the Document Editor, include the necessary CSS files from the **../node_modules/@syncfusion** package folder. This can be referenced in [src/styles.css] using following code.
27+
28+
```css
29+
@import '../node_modules/@syncfusion/ej2-base/styles/material.css';
30+
@import '../node_modules/@syncfusion/ej2-buttons/styles/material.css';
31+
@import '../node_modules/@syncfusion/ej2-inputs/styles/material.css';
32+
@import '../node_modules/@syncfusion/ej2-popups/styles/material.css';
33+
@import '../node_modules/@syncfusion/ej2-lists/styles/material.css';
34+
@import '../node_modules/@syncfusion/ej2-navigations/styles/material.css';
35+
@import '../node_modules/@syncfusion/ej2-splitbuttons/styles/material.css';
36+
@import '../node_modules/@syncfusion/ej2-dropdowns/styles/material.css';
37+
@import '../node_modules/@syncfusion/ej2-angular-documenteditor/styles/material.css';
38+
@import '../node_modules/@syncfusion/ej2-ribbon/styles/material.css';/* Required for Ribbon */
39+
```
40+
2641
The following code shows the how to enable the `Ribbon` in Document Editor.
2742

2843
```typescript

Document-Processing/Word/Word-Processor/react/ribbon.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,21 @@ To enable Ribbon in React Document Editor, use the [`toolbarMode`](https://ej2.s
2323

2424
By default, `toolbarMode` is `Toolbar`.
2525

26+
To use Ribbon mode, add Document Editor component and its dependent component styles available in **../node_modules/@syncfusion** package folder. This can be added as reference in **src/App.css**.
27+
28+
```css
29+
@import '../node_modules/@syncfusion/ej2-base/styles/material.css';
30+
@import '../node_modules/@syncfusion/ej2-buttons/styles/material.css';
31+
@import '../node_modules/@syncfusion/ej2-inputs/styles/material.css';
32+
@import '../node_modules/@syncfusion/ej2-popups/styles/material.css';
33+
@import '../node_modules/@syncfusion/ej2-lists/styles/material.css';
34+
@import '../node_modules/@syncfusion/ej2-navigations/styles/material.css';
35+
@import '../node_modules/@syncfusion/ej2-splitbuttons/styles/material.css';
36+
@import '../node_modules/@syncfusion/ej2-dropdowns/styles/material.css';
37+
@import "../node_modules/@syncfusion/ej2-documenteditor/styles/material.css";
38+
@import '../node_modules/@syncfusion/ej2-ribbon/styles/material.css';/* Required for Ribbon */
39+
```
40+
2641
The following code shows the how to enable the `Ribbon` in Document Editor.
2742

2843
{% raw %}

Document-Processing/Word/Word-Processor/vue/ribbon.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,21 @@ To enable Ribbon in Document Editor, use the [`toolbarMode`](https://ej2.syncfus
2323

2424
By default, `toolbarMode` is `Toolbar`.
2525

26+
To use Ribbon mode, add Document Editor component and its dependent component styles available in **../node_modules/@syncfusion** package folder. This can be added as reference in **src/App.vue**.
27+
28+
```css
29+
@import '../node_modules/@syncfusion/ej2-base/styles/material.css';
30+
@import '../node_modules/@syncfusion/ej2-buttons/styles/material.css';
31+
@import '../node_modules/@syncfusion/ej2-inputs/styles/material.css';
32+
@import '../node_modules/@syncfusion/ej2-popups/styles/material.css';
33+
@import '../node_modules/@syncfusion/ej2-lists/styles/material.css';
34+
@import '../node_modules/@syncfusion/ej2-navigations/styles/material.css';
35+
@import '../node_modules/@syncfusion/ej2-splitbuttons/styles/material.css';
36+
@import '../node_modules/@syncfusion/ej2-dropdowns/styles/material.css';
37+
@import "../node_modules/@syncfusion/ej2-documenteditor/styles/material.css";
38+
@import '../node_modules/@syncfusion/ej2-ribbon/styles/material.css';/* Required for Ribbon */
39+
```
40+
2641
The following code shows the how to enable the `Ribbon` in Document Editor.
2742

2843
{% tabs %}

0 commit comments

Comments
 (0)