Skip to content

Commit 7699614

Browse files
committed
208152-Search-Console-Page-Redirect-Syncfusion-Domain
1 parent 9217f07 commit 7699614

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

Document-Processing/Excel/Spreadsheet/Angular/data-binding.md

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

1010
# Data binding in Angular Spreadsheet component
1111

12-
The Spreadsheet uses [`DataManager`](https://helpej2.syncfusion.com/angular/documentation/data/), which supports both RESTful JSON data services and local JavaScript object array binding to a range. The `dataSource` property can be assigned either with the instance of [`DataManager`](https://helpej2.syncfusion.com/angular/documentation/data/) or JavaScript object array collection.
12+
The Spreadsheet uses [`DataManager`](https://ej2.syncfusion.com/angular/documentation/data/getting-started), which supports both RESTful JSON data services and local JavaScript object array binding to a range. The `dataSource` property can be assigned either with the instance of [`DataManager`](https://ej2.syncfusion.com/angular/documentation/data/getting-started) or JavaScript object array collection.
1313

1414
> To bind data to a cell, use `cell data binding` support.
1515
@@ -29,13 +29,13 @@ Refer to the following code example for local data binding.
2929
{% endhighlight %}
3030
{% endtabs %}
3131

32-
{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/local-data-binding-cs1" %}
32+
{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/local-data-binding-cs1/" %}
3333

34-
> The local data source can also be provided as an instance of the [`DataManager`](https://helpej2.syncfusion.com/angular/documentation/data/). By default, [`DataManager`](https://helpej2.syncfusion.com/angular/documentation/data/) uses [`JsonAdaptor`](https://ej2.syncfusion.com/angular/documentation/data/adaptors#json-adaptor) for local data-binding.
34+
> The local data source can also be provided as an instance of the [`DataManager`](https://ej2.syncfusion.com/angular/documentation/data/getting-started). By default, [`DataManager`](https://ej2.syncfusion.com/angular/documentation/data/getting-started) uses [`JsonAdaptor`](https://ej2.syncfusion.com/angular/documentation/data/adaptors#json-adaptor) for local data-binding.
3535
3636
### Customizing column data mapping
3737

38-
By default, when a data source is bound to a sheet, columns are auto-assigned from the data source fields sequentially. This means that the first field in the data source is assigned to Column A, the second to Column B, and so on, sequentially. However, now you can customize the column assignments by specifying the appropriate field names in the desired order using the [fieldsOrder](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/rangeModel/#fieldsorder) property.
38+
By default, when a data source is bound to a sheet, columns are auto-assigned from the data source fields sequentially. This means that the first field in the data source is assigned to Column A, the second to Column B, and so on, sequentially. However, now you can customize the column assignments by specifying the appropriate field names in the desired order using the [fieldsOrder](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/rangemodel/#fieldsorder) property.
3939

4040
> You can customize the mapping of column data only in the local data binding support.
4141
@@ -51,11 +51,11 @@ The following code example demonstrates how to customize the mapping of column d
5151
{% endhighlight %}
5252
{% endtabs %}
5353

54-
{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/field-mapping-cs1" %}
54+
{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/field-mapping-cs1/" %}
5555

5656
## Remote data
5757

58-
To bind remote data to the Spreadsheet control, assign service data as an instance of [`DataManager`](https://helpej2.syncfusion.com/angular/documentation/data/) to the `dataSource` property. To interact with remote data source, provide the service endpoint `url`.
58+
To bind remote data to the Spreadsheet control, assign service data as an instance of [`DataManager`](https://ej2.syncfusion.com/angular/documentation/data/getting-started) to the `dataSource` property. To interact with remote data source, provide the service endpoint `url`.
5959

6060
Refer to the following code example for remote data binding.
6161

@@ -69,7 +69,7 @@ Refer to the following code example for remote data binding.
6969
{% endhighlight %}
7070
{% endtabs %}
7171

72-
{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/remote-data-binding-cs1" %}
72+
{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/remote-data-binding-cs1/" %}
7373

7474
> By default, `DataManager` uses **ODataAdaptor** for remote data-binding.
7575
@@ -87,7 +87,7 @@ Refer to the following code example for remote data binding.
8787
{% endhighlight %}
8888
{% endtabs %}
8989

90-
{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/remote-data-binding-cs2" %}
90+
{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/remote-data-binding-cs2/" %}
9191

9292
### Web API
9393

@@ -103,7 +103,7 @@ You can use WebApiAdaptor to bind spreadsheet with Web API created using OData e
103103
{% endhighlight %}
104104
{% endtabs %}
105105

106-
{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/remote-data-binding-cs3" %}
106+
{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/remote-data-binding-cs3/" %}
107107

108108
## Cell data binding
109109

@@ -121,7 +121,7 @@ Refer to the following code example for cell data binding.
121121
{% endhighlight %}
122122
{% endtabs %}
123123

124-
{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/cell-data-binding-cs1" %}
124+
{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/cell-data-binding-cs1/" %}
125125

126126
> The cell data binding also supports formula, style, number format, and more.
127127
@@ -151,7 +151,7 @@ The following table defines the arguments of the `dataSourceChanged` event.
151151
{% endhighlight %}
152152
{% endtabs %}
153153

154-
{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/dynamic-data-binding-cs1" %}
154+
{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/dynamic-data-binding-cs1/" %}
155155

156156
## Dynamic data binding using updateRange method
157157

@@ -171,7 +171,7 @@ The following code example demonstrates how to dynamically update data using the
171171
{% endhighlight %}
172172
{% endtabs %}
173173

174-
{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/dynamic-data-binding-cs2" %}
174+
{% previewsample "https://helpstaging.syncfusion.com/document-processing/samples/excel/spreadsheet/angular/dynamic-data-binding-cs2/" %}
175175

176176
## Note
177177

0 commit comments

Comments
 (0)