Skip to content

Commit 17e7db4

Browse files
Merge pull request #2228 from syncfusion-content/1009275-UGEnhancementHot
1009275: UG enhancement using AI prompt
2 parents 56afc9b + d9f3e82 commit 17e7db4

11 files changed

Lines changed: 714 additions & 513 deletions

File tree

Document-Processing/Word/Word-Processor/angular/getting-started.md

Lines changed: 128 additions & 68 deletions
Large diffs are not rendered by default.

Document-Processing/Word/Word-Processor/asp-net-core/getting-started-core.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: Getting Started with Syncfusion Document Editor Control
4-
description: Checkout and learn about getting started with Document Editor control of Syncfusion Essential JS 2 and more details.
4+
description: Check out and learn about getting started with Document Editor control of Syncfusion Essential JS 2 and more details.
55
platform: document-processing
66
control: Getting Started Core
77
documentation: ug
@@ -18,8 +18,10 @@ This section briefly explains about how to include [ASP.NET Core DocumentEditor]
1818

1919
## Create ASP.NET Core web application with Razor pages
2020

21+
Create a new ASP.NET Core web application using one of the following methods:
22+
2123
* [Create a Project using Microsoft Templates](https://learn.microsoft.com/en-us/aspnet/core/tutorials/razor-pages/razor-pages-start?view=aspnetcore-8.0&tabs=visual-studio#create-a-razor-pages-web-app)
22-
* [Create a Project using Syncfusion<sup style="font-size:70%">&reg;</sup> ASP.NET Core Extension](https://ej2.syncfusion.com/aspnetcore/documentation/getting-started/project-template)
24+
* [Create a Project using Syncfusion<sup style="font-size:70%">&reg;</sup> ASP.NET Core Extension](https://ej2.syncfusion.com/aspnetcore/documentation/getting-started/razor-pages)
2325

2426
## Install ASP.NET Core package in the application
2527

@@ -36,6 +38,7 @@ Install-Package Syncfusion.EJ2.AspNet.Core -Version {{ site.releaseversion }}
3638
N> Syncfusion<sup style="font-size:70%">&reg;</sup> ASP.NET Core controls are available in [nuget.org.](https://www.nuget.org/packages?q=syncfusion.EJ2) Refer to [NuGet packages topic](https://ej2.syncfusion.com/aspnetcore/documentation/nuget-packages) to learn more about installing NuGet packages in various OS environments. The Syncfusion.EJ2.AspNet.Core NuGet package has dependencies, [Newtonsoft.Json](https://www.nuget.org/packages/Newtonsoft.Json/) for JSON serialization and [Syncfusion.Licensing](https://www.nuget.org/packages/Syncfusion.Licensing/) for validating Syncfusion<sup style="font-size:70%">&reg;</sup> license key.
3739

3840
## Add Syncfusion<sup style="font-size:70%">&reg;</sup> ASP.NET Core Tag Helper
41+
3942
Open `~/Pages/_ViewImports.cshtml` file and import the `Syncfusion.EJ2` TagHelper.
4043

4144
{% tabs %}
@@ -84,9 +87,16 @@ Also, register the script manager `<ejs-script>` at the end of `<body>` in the A
8487
{% endhighlight %}
8588
{% endtabs %}
8689

90+
## Understanding component options
91+
92+
* **DocumentEditor**: A customizable component where you build the UI according to your specific requirements
93+
* **DocumentEditorContainer**: A complete solution with a predefined toolbar, properties pane, and status bar for comprehensive document editing
94+
95+
This guide demonstrates both options.
96+
8797
## Add ASP.NET Core DocumentEditor control
8898

89-
Now, add the Syncfusion<sup style="font-size:70%">&reg;</sup> ASP.NET Core DocumentEditor tag helper in `~/Pages/Index.cshtml` page.
99+
Add the Syncfusion<sup style="font-size:70%">&reg;</sup> ASP.NET Core DocumentEditor tag helper in `~/Pages/Index.cshtml` page.
90100

91101
{% tabs %}
92102
{% highlight cshtml tabtitle="CSHTML" %}

Document-Processing/Word/Word-Processor/asp-net-mvc/getting-started.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: Getting Started with ASP.NET MVC DocumentEditor | Syncfusion
4-
description: Checkout and learn about getting started with ASP.NET MVC DocumentEditor control of Syncfusion Essential JS 2 and more details.
4+
description: Check out and learn about getting started with ASP.NET MVC DocumentEditor control of Syncfusion Essential JS 2 and more details.
55
platform: document-processing
66
control: Getting Started
77
documentation: ug
@@ -73,14 +73,21 @@ Also, register the script manager `EJS().ScriptManager()` at the end of `<body>`
7373
{% highlight cshtml tabtitle="~/_Layout.cshtml" %}
7474

7575
<body>
76-
...
76+
...
7777
<!-- Syncfusion ASP.NET MVC Script Manager -->
7878
@Html.EJS().ScriptManager()
7979
</body>
8080

8181
{% endhighlight %}
8282
{% endtabs %}
8383

84+
## Understanding component options
85+
86+
* **DocumentEditor** — a customizable control for building a tailored UI.
87+
* **DocumentEditorContainer** — a complete container that includes a predefined toolbar, properties pane, and status bar for quick integration.
88+
89+
Choose the control that matches the required level of customization.
90+
8491
## Add ASP.NET MVC DocumentEditor control
8592

8693
Now, add the Syncfusion<sup style="font-size:70%">&reg;</sup> ASP.NET MVC DocumentEditor control in `~/Views/Home/Index.cshtml` page.
@@ -99,7 +106,7 @@ N> [View Sample in GitHub](https://github.com/SyncfusionExamples/ASP-NET-MVC-Get
99106

100107
## See also
101108

102-
* [How to localize the Document Editor container](./global-local).
109+
* [How to localize the Document editor container](./global-local).
103110
* [How to load the document by default](./how-to/open-default-document).
104111
* [How to customize tool bar](./how-to/customize-tool-bar).
105112
* [How to resize Document editor component](./how-to/resize-document-editor).

Document-Processing/Word/Word-Processor/blazor/getting-started/client-side-application.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ dotnet add package Syncfusion.Blazor.Themes -v {{ site.releaseversion }}
8181
dotnet restore
8282

8383
{% endhighlight %}
84-
8584
{% endtabs %}
8685

8786
N> Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor components are available on [nuget.org](https://www.nuget.org/packages?q=syncfusion.blazor). Refer to the [NuGet packages](https://blazor.syncfusion.com/documentation/nuget-packages) topic for available NuGet packages list with component details.
@@ -120,7 +119,7 @@ builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.
120119

121120
builder.Services.AddSyncfusionBlazor();
122121
await builder.Build().RunAsync();
123-
....
122+
....
124123

125124
{% endhighlight %}
126125
{% endtabs %}

Document-Processing/Word/Word-Processor/blazor/getting-started/server-side-application.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Install-Package Syncfusion.Blazor.Themes -Version {{ site.releaseversion }}
4343
{% endhighlight %}
4444
{% endtabs %}
4545

46-
N> Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor components are available on [nuget.org](https://www.nuget.org/packages?q=syncfusion.blazor). Refer to the [NuGet packages](https://blazor.syncfusion.com/documentation/nuget-packages) topic for available NuGet packages list with component details.
46+
N> Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor components are available on [nuget.org](https://www.nuget.org/packages?q=syncfusion.blazor). Refer to the [NuGet packages](https://blazor.syncfusion.com/documentation/nuget-packages) topic for available NuGet packages and component details.
4747

4848
{% endtabcontent %}
4949

@@ -67,7 +67,6 @@ dotnet new blazorserver -o BlazorApp
6767
cd BlazorApp
6868

6969
{% endhighlight %}
70-
7170
{% endtabs %}
7271

7372
## Install Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor WordProcessor and Themes NuGet in the App
@@ -85,7 +84,6 @@ dotnet add package Syncfusion.Blazor.Themes -v {{ site.releaseversion }}
8584
dotnet restore
8685

8786
{% endhighlight %}
88-
8987
{% endtabs %}
9088

9189
N> Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor components are available on [nuget.org](https://www.nuget.org/packages?q=syncfusion.blazor). Refer to [NuGet packages](https://blazor.syncfusion.com/documentation/nuget-packages) topic for available NuGet packages list with component details.

0 commit comments

Comments
 (0)