Skip to content

Commit 459ae42

Browse files
Merge pull request #304 from Syncfusion-Content/hotfix/hotfix-v22.2.5
DOCINFRA-2341_merged_using_automation
2 parents 9fe4014 + e8f0932 commit 459ae42

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

angular/GettingStarted/getting-started-with-yeoman-generator.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ To getting started with Syncfusion Angular Components, the NPM packages [ej-angu
2828

2929
## Prerequisites
3030

31-
* [Node JS](https://nodejs.org/en/)(v6.x.x or higher)
32-
* [NPM](https://docs.npmjs.com/getting-started/installing-node#install-npm--manage-npm-versions)(v4.x.x or higher)
33-
* [.NET Core SDK 1.1](https://www.microsoft.com/net/download/core#/current)
31+
* [Node JS](https://nodejs.org/en)(v6.x.x or higher)
32+
* [NPM](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)(v4.x.x or higher)
33+
* [.NET Core SDK 1.1](https://dotnet.microsoft.com/en-us/download#/current)
3434

3535
## Install the SPA Template using Yeoman Generator
3636

angular/Grid/Data-Binding.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ The following output is displayed as a result of the above code example.
6363

6464

6565
N> 1. There is no in-built support to bind the XML data to the grid. But you can achieve this requirement with the help of [`custom adaptor`]concept.
66-
N> 2. Refer this [Knowledge Base link](http://www.syncfusion.com/kb/3377/how-to-process-xml-data-from-server-using-datamanager-and-bound-to-grid#) for bounding XML data to grid using custom adaptor.
66+
N> 2. Refer this [Knowledge Base link](https://support.syncfusion.com/kb/article/3562/how-to-process-xml-data-from-server-using-datamanager-and-bound-to-aspnet-mvc-grid) for bounding XML data to grid using custom adaptor.
6767

6868
## Remote Data
6969

7070
To bind remote data to Grid Control, you can assign a service data as an instance of `ej.DataManager` to the `dataSource` property.
7171

7272
### OData
7373

74-
OData is a standardized protocol for creating and consuming data. You can provide the [OData service](http://www.odata.org/#) URL directly to the `ej.DataManager` class and then you can assign it to Grid [`dataSource`](https://help.syncfusion.com/api/angular/ejgrid#members:datasource "dataSource").
74+
OData is a standardized protocol for creating and consuming data. You can provide the [OData service](https://www.odata.org/) URL directly to the `ej.DataManager` class and then you can assign it to Grid [`dataSource`](https://help.syncfusion.com/api/angular/ejgrid#members:datasource "dataSource").
7575

7676
The following code example describes the above behavior.
7777

@@ -159,7 +159,7 @@ The following code example describes the above behavior.
159159
160160
{% endhighlight %}
161161

162-
{% seealso %}For further details about OData service please refer to [this link](http://www.odata.org/#). {% endseealso %}
162+
{% seealso %}For further details about OData service please refer to [this link](https://www.odata.org/#). {% endseealso %}
163163

164164

165165
### WebAPI

angular/Spreadsheet/Getting-Started.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ This section explains you the steps required to populate the Spreadsheet with da
1515

1616
To render the Spreadsheet control, the following list of external dependencies are needed,
1717

18-
* [jQuery](http://jquery.com) - 1.7.1 and later versions
18+
* [jQuery](https://jquery.com/) - 1.7.1 and later versions
1919

2020
The required Angular script as `ej.angular2.min.js` which can be available in below `CDN` link:
2121

22-
* [http://cdn.syncfusion.com/14.3.0.52/js/common/ej.angular2.min.js](http://cdn.syncfusion.com/14.3.0.52/js/common/ej.angular2.min.js)
22+
* [https://cdn.syncfusion.com/14.3.0.52/js/common/ej.angular2.min.js](https://cdn.syncfusion.com/14.3.0.52/js/common/ej.angular2.min.js)
2323

24-
For other required internal dependencies refer the [`link`](http://help.syncfusion.com/js/spreadsheet/dependencies "link")
24+
For other required internal dependencies refer the [`link`](https://help.syncfusion.com/js/spreadsheet/dependencies "link")
2525

2626
N> Spreadsheet uses one or more sub-controls, therefore refer the `ej.web.all.min.js` (which encapsulates all the `ej` controls and frameworks in a single file) in the application instead of referring all the above specified internal dependencies.
2727

@@ -54,8 +54,8 @@ So the complete boilerplate code is
5454

5555
{% endhighlight %}
5656

57-
N> In production, we highly recommend you to use our [`custom script generator`](http://helpjs.syncfusion.com/js/custom-script-generator) to create custom script file with required controls and its dependencies only. Also to reduce the file size further please use [`GZip compression`](https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/optimize-encoding-and-transfer?hl=en) in your server.
58-
N> For themes, you can use the `ej.web.all.min.css` CDN link from the code example given. To add the themes in your application, please refer to [`this link`](http://help.syncfusion.com/js/theming-in-essential-javascript-components).
57+
N> In production, we highly recommend you to use our [`custom script generator`](https://help.syncfusion.com/js/custom-script-generator) to create custom script file with required controls and its dependencies only. Also to reduce the file size further please use [`GZip compression`](https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/optimize-encoding-and-transfer?hl=en) in your server.
58+
N> For themes, you can use the `ej.web.all.min.css` CDN link from the code example given. To add the themes in your application, please refer to [`this link`](https://help.syncfusion.com/js/theming-in-essential-javascript-components).
5959

6060
## Initialize Spreadsheet
6161

@@ -131,7 +131,7 @@ Now, this section explains how to populate JSON data to the Spreadsheet. You can
131131

132132
![Getting-Started](Getting-Started_images/Getting-Started_img2.png)
133133

134-
N> For more details about `data binding` refer following [`link`](http://help.syncfusion.com/angular-2/spreadsheet/data-binding "link")
134+
N> For more details about `data binding` refer following [`link`](https://help.syncfusion.com/angular/spreadsheet/data-binding "link")
135135

136136
## Apply Conditional Formatting
137137

@@ -146,7 +146,7 @@ Conditional formatting helps you to apply formats to a cell or range with certai
146146
</ej-spreadsheet>
147147
{% endhighlight %}
148148

149-
To apply conditional formats for a range use [`setCFRule`](http://help.syncfusion.com/js/api/ejspreadsheet#methods:xlcformat-setcfrule "setCFRule") method. The following code example illustrates this,
149+
To apply conditional formats for a range use [`setCFRule`](https://help.syncfusion.com/api/js/ejspreadsheet#methods:xlcformat-setcfrule "setCFRule") method. The following code example illustrates this,
150150

151151
{% highlight ts %}
152152

@@ -174,7 +174,7 @@ export class AppComponent {
174174

175175
![Getting-Started](Getting-Started_images/Getting-Started_img3.png)
176176

177-
N> For more details about `Conditional Formatting` refer following [`link`](http://help.syncfusion.com/angular-2/spreadsheet/data-presentation#conditional-formatting "link")
177+
N> For more details about `Conditional Formatting` refer following [`link`](https://help.syncfusion.com/angular/spreadsheet/data-presentation#conditional-formatting "link")
178178

179179
## Export Spreadsheet as Excel File
180180

@@ -205,7 +205,7 @@ The Spreadsheet can save its data, style, format into an excel file. To enable s
205205

206206
{% endhighlight %}
207207

208-
Use shortcut [`Ctrl + S`](http://help.syncfusion.com/angular-2/spreadsheet/keyboard-shortcuts "Ctrl + S") to save Spreadsheet as excel file.
208+
Use shortcut [`Ctrl + S`](https://help.syncfusion.com/angular/spreadsheet/keyboard-shortcuts "Ctrl + S") to save Spreadsheet as excel file.
209209

210-
N> 1. For more details about `Export` refer following [`link`](http://help.syncfusion.com/angular-2/spreadsheet/open-and-save#save "link")
211-
N> 2. For more details about `Server Configuration` refer following [`link`](http://help.syncfusion.com/angular-2/spreadsheet/open-and-save#server-configuration "link")
210+
N> 1. For more details about `Export` refer following [`link`](https://help.syncfusion.com/angular/spreadsheet/open-and-save#save "link")
211+
N> 2. For more details about `Server Configuration` refer following [`link`](https://help.syncfusion.com/angular/spreadsheet/open-and-save#server-configuration "link")

0 commit comments

Comments
 (0)