Skip to content

Commit edeb0c6

Browse files
committed
1009275: Updated UG documentation using AI prompt
1 parent d84ec4c commit edeb0c6

9 files changed

Lines changed: 721 additions & 461 deletions

File tree

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

Lines changed: 138 additions & 63 deletions
Large diffs are not rendered by default.

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

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
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.
3+
title: Getting Started with ASP.NET Core DocumentEditor Control | Syncfusion
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,6 +18,8 @@ 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)
2224
* [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)
2325

@@ -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,18 @@ 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+
Syncfusion offers two DocumentEditor components with different feature sets:
93+
94+
* **DocumentEditor**: A customizable component where you build the UI according to your specific requirements
95+
* **DocumentEditorContainer**: A complete solution with a predefined toolbar, properties pane, and status bar for comprehensive document editing
96+
97+
This guide demonstrates both options.
98+
8799
## Add ASP.NET Core DocumentEditor control
88100

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

91103
{% tabs %}
92104
{% highlight cshtml tabtitle="CSHTML" %}

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

Lines changed: 11 additions & 2 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,23 @@ 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+
Two DocumentEditor variants are available:
87+
88+
* **DocumentEditor** — a customizable control for building a tailored UI.
89+
* **DocumentEditorContainer** — a complete container that includes a predefined toolbar, properties pane, and status bar for quick integration.
90+
91+
Choose the control that matches the required level of customization.
92+
8493
## Add ASP.NET MVC DocumentEditor control
8594

8695
Now, add the Syncfusion<sup style="font-size:70%">&reg;</sup> ASP.NET MVC DocumentEditor control in `~/Views/Home/Index.cshtml` page.

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)