Skip to content

Commit eba32e5

Browse files
Merge pull request #426 from syncfusion-content/SEO-177596-page-with-redirect-js-ug
page with redirect links in js ug pages
2 parents 153eb8e + 0048433 commit eba32e5

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

js/Grid/Data-Binding.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ api: /api/js/ejgrid
99
---
1010
# Data binding
1111

12-
The Grid control uses [`ej.DataManager`](https://help.syncfusion.com/js/datamanager/overview# "ej.DataManager") which supports both RESTful JSON data services binding and local JSON array binding. The [`dataSource`](https://help.syncfusion.com/api/js/ejgrid#members:datasource "dataSource") property can be assigned either with the instance of [`ej.DataManger`](https://help.syncfusion.com/api/js/ejdatamanager# "ej.DataManager") or JSON data array collection. It supports different kinds of data binding methods such as.
12+
The Grid control uses [`ej.DataManager`](https://help.syncfusion.com/js/datamanager/overview "ej.DataManager") which supports both RESTful JSON data services binding and local JSON array binding. The [`dataSource`](https://help.syncfusion.com/api/js/ejgrid#members:datasource "dataSource") property can be assigned either with the instance of [`ej.DataManger`](https://help.syncfusion.com/api/js/ejdatamanager "ej.DataManager") or JSON data array collection. It supports different kinds of data binding methods such as.
1313

1414
1. Local data
1515
2. Remote data
@@ -47,7 +47,7 @@ The following code example describes the above behavior.
4747

4848
{% endhighlight %}
4949

50-
The JSON array to the [`dataSource`](https://help.syncfusion.com/api/js/ejgrid#members:datasource "dataSource") property can also be provided as an instance of the [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager# "DataManager"). When the JSON array is passed as an instance of [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager# "DataManager"), the `ej.JsonAdaptor` will be used to manipulate the grid datasource.
50+
The JSON array to the [`dataSource`](https://help.syncfusion.com/api/js/ejgrid#members:datasource "dataSource") property can also be provided as an instance of the [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager "DataManager"). When the JSON array is passed as an instance of [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager "DataManager"), the `ej.JsonAdaptor` will be used to manipulate the grid datasource.
5151

5252
The following code example describes the above behavior.
5353

@@ -79,11 +79,11 @@ N> 3. To update the dataSource after Grid rendered, use [`dataSource`](https://h
7979

8080
## Remote Data
8181

82-
To bind remote data to Grid Control, you can assign a service data as an instance of [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager# "DataManager") to the [`dataSource`](https://help.syncfusion.com/api/js/ejgrid#members:datasource "dataSource") property.
82+
To bind remote data to Grid Control, you can assign a service data as an instance of [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager "DataManager") to the [`dataSource`](https://help.syncfusion.com/api/js/ejgrid#members:datasource "dataSource") property.
8383

8484
### OData
8585

86-
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`](https://help.syncfusion.com/api/js/ejdatamanager# "DataManager") class and then you can assign it to Grid [`dataSource`](https://help.syncfusion.com/api/js/ejgrid#members:datasource "datasource").
86+
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`](https://help.syncfusion.com/api/js/ejdatamanager "DataManager") class and then you can assign it to Grid [`dataSource`](https://help.syncfusion.com/api/js/ejgrid#members:datasource "datasource").
8787

8888
The following code example describes the above behavior.
8989

@@ -112,7 +112,7 @@ The following output is displayed as a result of the above code example.
112112

113113
#### OData Version 4
114114

115-
For OData Version 4 support, ej.ODataV4Adaptor should be used. By using `url` property of [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager# "DataManager") you can bind OData Version 4 Service link and specify `adaptor` as `ej.ODataV4Adaptor`.
115+
For OData Version 4 support, ej.ODataV4Adaptor should be used. By using `url` property of [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager "DataManager") you can bind OData Version 4 Service link and specify `adaptor` as `ej.ODataV4Adaptor`.
116116

117117
I> You can provide adaptor value either as `string` value ("ODataAdaptor") or by creating a new instance (new `ej.ODataV4Adaptor`).
118118

@@ -208,9 +208,9 @@ The following output is displayed as a result of the above code example.
208208

209209
### Other RESTful web services
210210

211-
The [Custom Adaptor](https://help.syncfusion.com/js/datamanager/data-adaptors#custom-adaptor "CustomAdaptor") concept of [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager# "DataManager") allows to customize or generate your own adaptor which is used to process the `query` and `result` data.
211+
The [Custom Adaptor](https://help.syncfusion.com/js/datamanager/data-adaptors#custom-adaptor "CustomAdaptor") concept of [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager "DataManager") allows to customize or generate your own adaptor which is used to process the `query` and `result` data.
212212

213-
When using remote data binding, the adaptor of the [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager# "DataManager") plays vital role in processing queries to make them suitable to sends along with the data request and also in processing the response data from the server.
213+
When using remote data binding, the adaptor of the [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager "DataManager") plays vital role in processing queries to make them suitable to sends along with the data request and also in processing the response data from the server.
214214

215215
The following code example describes the above behavior.
216216

@@ -277,7 +277,7 @@ The following output is displayed as a result of the above code example.
277277

278278
### Load At Once
279279

280-
On remote data binding, by default all the Grid actions will be processed on server-side such as paging, sorting, editing, grouping and filtering etc. To avoid post back to server on every action, you can set the grid to load all the data on initialization time and make the actions client-side. To enable this, you can use `offline` property of the [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager# "DataManager").
280+
On remote data binding, by default all the Grid actions will be processed on server-side such as paging, sorting, editing, grouping and filtering etc. To avoid post back to server on every action, you can set the grid to load all the data on initialization time and make the actions client-side. To enable this, you can use `offline` property of the [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager "DataManager").
281281

282282
The following code example describes the above behavior.
283283

@@ -313,7 +313,7 @@ The following output is displayed as a result of the above code example.
313313

314314
### Data Caching
315315

316-
Date caching will help you prevent the request to server for already visited pages in Grid using the `enableCaching` property of [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager# "DataManager"). Also using `cachingPageSize` and `timeTillExpiration` properties of [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager# "DataManager"), you can control the number of pages to be cached and duration it should be cached respectively.
316+
Date caching will help you prevent the request to server for already visited pages in Grid using the `enableCaching` property of [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager "DataManager"). Also using `cachingPageSize` and `timeTillExpiration` properties of [`ej.DataManager`](https://help.syncfusion.com/api/js/ejdatamanager "DataManager"), you can control the number of pages to be cached and duration it should be cached respectively.
317317

318318
N> The cached data will be stored in browser's HTML5 `localStorage`.
319319

js/Spreadsheet/Open-and-Save.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Following file types can be opened in Spreadsheet
5757
* XLSX
5858
* CSV
5959

60-
[`Click`](http://js.syncfusion.com/demos/web/#!/azure/spreadsheet/importexport "Click") here to view online demo sample.
60+
[`Click`](https://ej2.syncfusion.com/home/javascript.html#!/azure/spreadsheet/importexport "Click") here to view online demo sample.
6161

6262
* Using [`getExportProps`](https://help.syncfusion.com/api/js/ejspreadsheet#methods:xlexport-getexportprops "getExportProps") method to get the export properties in the Spreadsheet.
6363
You can open excel documents in following ways,

0 commit comments

Comments
 (0)