Skip to content

Commit a7a1b5c

Browse files
Merge branch 'development' into EJ2-866126-RibbonContent
2 parents a20d392 + 3c64f44 commit a7a1b5c

File tree

1,272 files changed

+27419
-10804
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,272 files changed

+27419
-10804
lines changed

Jenkinsfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ String platform='ej2-asp-core-mvc';
1717
{
1818
checkout scm
1919

20-
// def branchCommit = '"' + 'https://api.github.com/repos/syncfusion-content/install-docs/pulls/'+env.pullRequestId+'/files'
21-
def branchCommit = '"'+'https://api.github.com/repos/syncfusion-content/ej2-asp-core-mvc-docs/pulls/'+env.pullRequestId+'/files'
20+
def branchCommit = 'https://api.github.com/repos/syncfusion-content/'+env.githubSourceRepoHttpUrl.split('/')[env.githubSourceRepoHttpUrl.split('/').size() - 1]+'/pulls/' + env.pullRequestId + '/files'
21+
2222
String branchCommitDetails = bat returnStdout: true, script: 'curl -H "Accept: application/vnd.github.v3+json" -u SyncfusionBuild:' + env.GithubBuildAutomation_PrivateToken + " " + branchCommit
2323

2424
def ChangeFiles= branchCommitDetails.split('"filename": ');
@@ -74,7 +74,8 @@ if(currentBuild.result != 'FAILURE')
7474

7575
stage 'Delete Workspace'
7676

77-
def files = findFiles(glob: '**/cireports/spellcheck/*.*')
77+
//def files = findFiles(glob: '**/cireports/spellcheck/*.*')
78+
def files = findFiles(glob: '**/cireports/*.*')
7879

7980
if(files.size() > 0)
8081
{

ej2-asp-core-mvc/3d-chart/EJ2_ASP.NETCORE/getting-started.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ This section briefly explains about how to include [ASP.NET Core 3D Chart](https
1414

1515
## Prerequisites
1616

17-
[System requirements for ASP.NET Core controls](https://ej2.syncfusion.com/aspnetcore/documentation/system-requirements/)
17+
[System requirements for ASP.NET Core controls](https://ej2.syncfusion.com/aspnetcore/documentation/system-requirements)
1818

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

21-
* [Create a Project using Microsoft Templates](https://docs.microsoft.com/en-us/aspnet/core/tutorials/razor-pages/razor-pages-start?view=aspnetcore-6.0&tabs=visual-studio#create-a-razor-pages-web-app)
21+
* [Create a Project using Microsoft Templates](https://learn.microsoft.com/en-us/aspnet/core/tutorials/razor-pages/razor-pages-start?view=aspnetcore-6.0&tabs=visual-studio#create-a-razor-pages-web-app)
2222

23-
* [Create a Project using Syncfusion ASP.NET Core Extension](https://ej2.syncfusion.com/aspnetcore/documentation/getting-started/project-template/)
23+
* [Create a Project using Syncfusion ASP.NET Core Extension](https://ej2.syncfusion.com/aspnetcore/documentation/getting-started/project-template)
2424

2525
## Install ASP.NET Core package in the application
2626

@@ -34,7 +34,7 @@ Install-Package Syncfusion.EJ2.AspNet.Core -Version {{ site.releaseversion }}
3434
{% endhighlight %}
3535
{% endtabs %}
3636

37-
N> Syncfusion 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 license key.
37+
N> Syncfusion 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 license key.
3838

3939
## Add Syncfusion ASP.NET Core tag helper
4040

@@ -111,11 +111,11 @@ Now, add the Syncfusion ASP.NET Core 3D Chart tag helper in `~/Pages/Index.cshtm
111111

112112
Press <kbd>Ctrl</kbd>+<kbd>F5</kbd> (Windows) or <kbd>⌘</kbd>+<kbd>F5</kbd> (macOS) to run the app. Then, the Syncfusion ASP.NET Core Chart control will be rendered in the default web browser.
113113

114-
![ASP.NET Core 3D Chart Control](images/3d-chart.png)
114+
![ASP.NET Core 3D Chart Control](images/three-d-chart.png)
115115

116116
N> `View Sample in GitHub`.
117117

118118
## See also
119119

120-
* [Getting Started with Syncfusion ASP.NET Core using Razor Pages](https://ej2.syncfusion.com/aspnetcore/documentation/getting-started/razor-pages/)
120+
* [Getting Started with Syncfusion ASP.NET Core using Razor Pages](https://ej2.syncfusion.com/aspnetcore/documentation/getting-started/razor-pages)
121121
* [Getting Started with Syncfusion ASP.NET Core MVC using Tag Helper](https://ej2.syncfusion.com/aspnetcore/documentation/getting-started/aspnet-core-mvc-taghelper)

ej2-asp-core-mvc/EJ2_ASP.MVC/getting-started/aspnet-core-mvc-htmlhelper.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This article provides step-by-step instructions for building ASP.NET Core MVC ap
1414

1515
## Prerequisites
1616

17-
[System requirements for ASP.NET Core components](https://ej2.syncfusion.com/aspnetcore/documentation/system-requirements/)
17+
[System requirements for ASP.NET Core components](https://ej2.syncfusion.com/aspnetcore/documentation/system-requirements)
1818

1919
## Create ASP.NET Core MVC application
2020

@@ -34,7 +34,7 @@ Install-Package Syncfusion.EJ2.AspNet.Core -Version {{ site.releaseversion }}
3434
{% endhighlight %}
3535
{% endtabs %}
3636

37-
N> Syncfusion 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 license key.
37+
N> Syncfusion 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 license key.
3838

3939
## Add Syncfusion ASP.NET Core namespace
4040

@@ -83,7 +83,7 @@ Also, register the script manager `EJS().ScriptManager()` at the end of `<body>`
8383
{% endhighlight %}
8484
{% endtabs %}
8585

86-
N> Checkout the [Themes topic](https://ej2.syncfusion.com/aspnetcore/documentation/appearance/theme/) to learn different ways ([CDN](https://ej2.syncfusion.com/aspnetcore/documentation/common/adding-script-references#cdn-reference), [NPM package](https://ej2.syncfusion.com/aspnetcore/documentation/common/adding-script-references#node-package-manager-npm), and [CRG](https://ej2.syncfusion.com/aspnetcore/documentation/common/custom-resource-generator/)) to refer styles in ASP.NET Core application, and to have the expected appearance for Syncfusion ASP.NET Core controls.
86+
N> Checkout the [Themes topic](https://ej2.syncfusion.com/aspnetcore/documentation/appearance/theme) to learn different ways ([CDN](https://ej2.syncfusion.com/aspnetcore/documentation/common/adding-script-references#cdn-reference), [NPM package](https://ej2.syncfusion.com/aspnetcore/documentation/common/adding-script-references#node-package-manager-npm), and [CRG](https://ej2.syncfusion.com/aspnetcore/documentation/common/custom-resource-generator)) to refer styles in ASP.NET Core application, and to have the expected appearance for Syncfusion ASP.NET Core controls.
8787

8888
N> Checkout the [Adding Script Reference](https://ej2.syncfusion.com/aspnetcore/documentation/common/adding-script-references) topic to learn different approaches for adding script references in your ASP.NET Core application.
8989

ej2-asp-core-mvc/EJ2_ASP.MVC/getting-started/aspnet-core-mvc-taghelper.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This article provides step-by-step instructions for building ASP.NET Core MVC ap
1414

1515
## Prerequisites
1616

17-
[System requirements for ASP.NET Core components](https://ej2.syncfusion.com/aspnetcore/documentation/system-requirements/)
17+
[System requirements for ASP.NET Core components](https://ej2.syncfusion.com/aspnetcore/documentation/system-requirements)
1818

1919
## Create ASP.NET Core MVC application
2020

@@ -34,7 +34,7 @@ Install-Package Syncfusion.EJ2.AspNet.Core -Version {{ site.releaseversion }}
3434
{% endhighlight %}
3535
{% endtabs %}
3636

37-
N> Syncfusion 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 license key.
37+
N> Syncfusion 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 license key.
3838

3939
## Add Syncfusion ASP.NET Core Tag Helper
4040
Open `~/Views/_ViewImports.cshtml` file and import the `Syncfusion.EJ2` TagHelper.
@@ -79,7 +79,7 @@ Also, register the script manager `<ejs-script>` at the end of `<body>` in the A
7979
{% endhighlight %}
8080
{% endtabs %}
8181

82-
N> Checkout the [Themes topic](https://ej2.syncfusion.com/aspnetcore/documentation/appearance/theme/) to learn different ways ([CDN](https://ej2.syncfusion.com/aspnetcore/documentation/common/adding-script-references#cdn-reference), [NPM package](https://ej2.syncfusion.com/aspnetcore/documentation/common/adding-script-references#node-package-manager-npm), and [CRG](https://ej2.syncfusion.com/aspnetcore/documentation/common/custom-resource-generator/)) to refer styles in ASP.NET Core application, and to have the expected appearance for Syncfusion ASP.NET Core controls.
82+
N> Checkout the [Themes topic](https://ej2.syncfusion.com/aspnetcore/documentation/appearance/theme) to learn different ways ([CDN](https://ej2.syncfusion.com/aspnetcore/documentation/common/adding-script-references#cdn-reference), [NPM package](https://ej2.syncfusion.com/aspnetcore/documentation/common/adding-script-references#node-package-manager-npm), and [CRG](https://ej2.syncfusion.com/aspnetcore/documentation/common/custom-resource-generator)) to refer styles in ASP.NET Core application, and to have the expected appearance for Syncfusion ASP.NET Core controls.
8383

8484
N> Checkout the [Adding Script Reference](https://ej2.syncfusion.com/aspnetcore/documentation/common/adding-script-references) topic to learn different approaches for adding script references in your ASP.NET Core application.
8585

ej2-asp-core-mvc/EJ2_ASP.MVC/getting-started/visual-studio-2017.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ documentation: ug
1212

1313
# Getting Started with Essential JS 2 for ASP.NET MVC in Visual Studio
1414

15-
This article provides a step-by-step introduction to configure Essential JS 2 setup, build and publish a simple ASP.NET MVC web application using [Visual Studio](https://aka.ms/vsdownload?utm_source=mscom&utm_campaign=msdocs).
15+
This article provides a step-by-step introduction to configure Essential JS 2 setup, build and publish a simple ASP.NET MVC web application using [Visual Studio](https://visualstudio.microsoft.com/downloads/).
1616

17-
N> Starting with v16.2.0.x, if you reference to Syncfusion assemblies from trial setup or NuGet feed, you should include a license key in your projects. Refer to this [link](https://help.syncfusion.com/common/essential-studio/licensing/license-key) to learn about registering Syncfusion license key in your ASP.NET MVC application to use the components.
17+
N> Starting with v16.2.0.x, if you reference to Syncfusion assemblies from trial setup or NuGet feed, you should include a license key in your projects. Refer to this [link](https://help.syncfusion.com/common/essential-studio/licensing/overview) to learn about registering Syncfusion license key in your ASP.NET MVC application to use the components.
1818

1919
## Using Visual Studio 2019
2020

@@ -206,7 +206,7 @@ To get started with ASP.NET MVC 5 application, ensure the following software to
206206
</configuration>
207207
```
208208

209-
4. Add the client-side resources through [CDN](https://ej2.syncfusion.com/documentation/deployment/#cdn) in the `<head>` element of `~/Views/Shared/_Layout.cshtml` layout page.
209+
4. Add the client-side resources through [CDN](https://ej2.syncfusion.com/documentation/deployment#cdn) in the `<head>` element of `~/Views/Shared/_Layout.cshtml` layout page.
210210

211211
```html
212212
<head>
@@ -319,7 +319,7 @@ To get started with ASP.NET MVC 4 application, ensure the following software to
319319
</configuration>
320320
```
321321

322-
4. Add the client-side resources through [CDN](https://ej2.syncfusion.com/documentation/deployment/#cdn) in the `<head>` element of `~/Views/Shared/_Layout.cshtml` layout page.
322+
4. Add the client-side resources through [CDN](https://ej2.syncfusion.com/documentation/deployment#cdn) in the `<head>` element of `~/Views/Shared/_Layout.cshtml` layout page.
323323

324324
```html
325325
<head>
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

ej2-asp-core-mvc/EJ2_ASP.MVC/introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ padding-top: 50px;
224224

225225
## Getting Help
226226

227-
* If you are still not able to find the information that you are looking for in the self-help resources mentioned above then contact us by creating a support ticket in [our support site](https://www.syncfusion.com/support/product-lifecycle/) or ask your query in Stack Overflow with the tag `syncfusion-ej2`.
227+
* If you are still not able to find the information that you are looking for in the self-help resources mentioned above then contact us by creating a support ticket in [our support site](https://www.syncfusion.com/support/product-lifecycle/estudio) or ask your query in Stack Overflow with the tag `syncfusion-ej2`.
228228

229229
* Don't see what you need? request it in our [feedback portal](https://www.syncfusion.com/feedback/aspnet-mvc).
230230

@@ -234,7 +234,7 @@ N> Syncfusion does not collect any kind of information when our components are u
234234

235235
* Product Development
236236

237-
* [Product Development Life Cycle](https://www.syncfusion.com/support/product-lifecycle/)
237+
* [Product Development Life Cycle](https://www.syncfusion.com/support/product-lifecycle/estudio)
238238

239239
* Syncfusion Project Template
240240

Loading

ej2-asp-core-mvc/EJ2_ASP.NETCORE/appearance/theme-studio.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: Theme Studio in ##Platform_Name## Control | Syncfusion
4-
description: Learn here all about theme studio in Syncfusion ##Platform_Name##. Customize and generate a theme for specific controls.
4+
description: Learn here all about theme studio in Syncfusion ##Platform_Name##. Customize and generate a theme for specific controls.
55
platform: ej2-asp-core-mvc
66
control: Common
77
publishingplatform: ##Platform_Name##
@@ -54,7 +54,7 @@ You can download the custom styles after customizing the theme colors.
5454

5555
![download-icon](images/download-icon.png)
5656

57-
**Step 2:** Assign a theme name in the File Name field and click the Download button. If your application uses both Essential JS 1 and Essential JS 2 controls, then select the Include compatibility css check box before downloading the theme. This option will generate the custom theme for Essential JS 2 compatibility styles, which are compatible as Essential JS 1 styles. Refer this [link](../common/compatible-with-essential-JS1/) for more details about Essential JS 1 and Essential JS 2 compatibility.
57+
**Step 2:** Assign a theme name in the File Name field and click the Download button. If your application uses both Essential JS 1 and Essential JS 2 controls, then select the Include compatibility css check box before downloading the theme. This option will generate the custom theme for Essential JS 2 compatibility styles, which are compatible as Essential JS 1 styles. Refer this [link](https://ej2.syncfusion.com/aspnetcore/documentation/common/compatible-with-essential-js1) for more details about Essential JS 1 and Essential JS 2 compatibility.
5858

5959
![download-dialog](images/download-dialog.png)
6060

ej2-asp-core-mvc/EJ2_ASP.NETCORE/appearance/theme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Syncfusion ASP.NET Core themes can be used in your ASP.NET Core application by r
3838
Using the below approaches the themes can be referenced in the ASP.NET Core application,
3939

4040
1. [CDN](#cdn-reference) - Used to reference complete css via static web assets.
41-
2. [CRG](https://ej2.syncfusion.com/aspnetcore/documentation/common/custom-resource-generator/) - Used to generate resources only for the selected (used) components.
41+
2. [CRG](https://ej2.syncfusion.com/aspnetcore/documentation/common/custom-resource-generator) - Used to generate resources only for the selected (used) components.
4242
3. [Theme Studio](https://ej2.syncfusion.com/aspnetcore/documentation/appearance/theme-studio/) - Used to customize and generate themes only for the selected (used) components.
4343
4. [NPM Packages](#npm-packages) - Used to customize the existing themes and bundle stylesheet's in an application.
4444
5. [LibMan](#libman) - Used to downloads popular libraries and frameworks from a file system or a content delivery network (CDN) in an application.
@@ -625,7 +625,7 @@ You can add the theme for the ASP.NET Core applications through **npm packages**
625625
* To install Web Compiler, open Visual Studio and click the **Manage Extensions** in the toolbar.
626626

627627
![Themes-npm-package-extension](images/themes-npm-package-extension.png)
628-
628+
629629
![Themes-npm-package-web-compiler](images/themes-npm-package-web-compiler.png)
630630

631631
* Open Command Prompt from the application root directory and run the following command to install the Syncfusion `node_modules` in this application.
@@ -651,7 +651,7 @@ npm install @syncfusion/ej2
651651

652652
* Right-click the `SCSS` file and click the Web Compiler to compile the file.
653653

654-
![Themes-npm-packages-compile](images/themes-npm-packages-compile.png)
654+
![Themes-npm-packages-compile](images/themes-npm-packages-compile.png)
655655

656656
* The `compilerconfig.json` file is created. Then, provide the location of the compiled CSS file and include a path as shown in the following code snippet.
657657

@@ -692,7 +692,7 @@ N> [View sample in GitHub](https://github.com/SyncfusionExamples/asp-net-core-cs
692692

693693
## LibMan
694694

695-
Library Manager ([LibMan](https://docs.microsoft.com/en-us/aspnet/core/client-side/libman/libman-vs?view=aspnetcore-6.0)) is a client-side library acquisition tool that is simple to use. LibMan is a program that downloads popular libraries and frameworks from a file system or a content delivery network (CDN).
695+
Library Manager ([LibMan](https://learn.microsoft.com/en-us/aspnet/core/client-side/libman/libman-vs?view=aspnetcore-6.0)) is a client-side library acquisition tool that is simple to use. LibMan is a program that downloads popular libraries and frameworks from a file system or a content delivery network (CDN).
696696

697697
LibMan offers the following advantages,
698698

ej2-asp-core-mvc/EJ2_ASP.NETCORE/browser.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
3-
title: Browser Compatibility in ##Platform_Name## controls
4-
description: Learn here all about Browser compatibility of Syncfusion ##Platform_Name## controls and more.
3+
title: Browser Compatibility in ##Platform_Name## controls | Syncfusion
4+
description: Learn here all about Browser compatibility of Syncfusion ##Platform_Name## controls in desktop and mobile devices.
55
platform: ej2-asp-core-mvc
66
control: Common
77
publishingplatform: ##Platform_Name##
@@ -23,4 +23,4 @@ The Syncfusion ASP.NET Core controls are supported by all modern web browsers on
2323

2424
## See also
2525

26-
* [ASP.NET Core supported platforms](https://docs.microsoft.com/en-us/aspnet/core/blazor/supported-platforms)
26+
* [ASP.NET Core supported platforms](https://learn.microsoft.com/en-us/aspnet/core/blazor/supported-platforms?view=aspnetcore-8.0)

0 commit comments

Comments
 (0)