Skip to content

Commit ce42855

Browse files
Merge pull request #1303 from syncfusion-content/977397-Javascript-ES5
977397: Updated URL for Javascript Platform
2 parents e224e27 + 07053d6 commit ce42855

File tree

6 files changed

+15
-16
lines changed

6 files changed

+15
-16
lines changed

Document-Processing/Excel/Spreadsheet/Javascript-ES5/docker-deployment.md

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

1010
# Docker Image Overview in EJ2 Javascript Spreadsheet control
1111

12-
The [**Syncfusion<sup style="font-size:70%">&reg;</sup> Spreadsheet (also known as Excel Viewer)**](https://www.syncfusion.com/javascript-ui-controls/js-spreadsheet) is a feature-rich control for organizing and analyzing data in a tabular format. It provides all the common Excel features, including data binding, selection, editing, formatting, resizing, sorting, filtering, importing, and exporting Excel documents.
12+
The [**Syncfusion<sup style="font-size:70%">&reg;</sup> Spreadsheet (also known as Excel Viewer)**](https://www.syncfusion.com/spreadsheet-editor-sdk/javascript-spreadsheet-editor) is a feature-rich control for organizing and analyzing data in a tabular format. It provides all the common Excel features, including data binding, selection, editing, formatting, resizing, sorting, filtering, importing, and exporting Excel documents.
1313

1414
This Docker image is the pre-defined Docker container for Syncfusion's<sup style="font-size:70%">&reg;</sup> Spreadsheet backend functionalities. This server-side Web API project targets ASP.NET Core 8.0.
1515

@@ -57,7 +57,7 @@ docker-compose up
5757

5858
Now the Spreadsheet server Docker instance runs on localhost with the provided port number `http://localhost:6002`. Open this link in a browser and navigate to the Spreadsheet Web API open and save service at `http://localhost:6002/api/spreadsheet/open` and `http://localhost:6002/api/spreadsheet/save`.
5959

60-
**Step 4:** Append the URLs of the Docker instance running services to the [`openUrl`](https://helpej2.syncfusion.com/javascript/documentation/api/spreadsheet/#openurl) property as `http://localhost:6002/api/spreadsheet/open` and the [`saveUrl`](https://helpej2.syncfusion.com/javascript/documentation/api/spreadsheet/#saveurl) property as `http://localhost:6002/api/spreadsheet/save` in the client-side Spreadsheet control. For more information on how to get started with the Spreadsheet control, refer to this [`getting started page.`](https://ej2.syncfusion.com/javascript/documentation/spreadsheet/getting-started)
60+
**Step 4:** Append the URLs of the Docker instance running services to the [`openUrl`](https://helpej2.syncfusion.com/javascript/documentation/api/spreadsheet/#openurl) property as `http://localhost:6002/api/spreadsheet/open` and the [`saveUrl`](https://helpej2.syncfusion.com/javascript/documentation/api/spreadsheet/#saveurl) property as `http://localhost:6002/api/spreadsheet/save` in the client-side Spreadsheet control. For more information on how to get started with the Spreadsheet control, refer to this [`getting started page.`](https://help.syncfusion.com/document-processing/excel/spreadsheet/javascript-es5/getting-started)
6161

6262
```html
6363
<!DOCTYPE html>
@@ -135,4 +135,4 @@ services:
135135
- "6002:8080"
136136
```
137137

138-
Please refer to these getting started pages to create a Spreadsheet in [`Angular`](https://ej2.syncfusion.com/angular/documentation/spreadsheet/getting-started), [`React`](https://ej2.syncfusion.com/react/documentation/spreadsheet/getting-started), [`Vue`](https://ej2.syncfusion.com/vue/documentation/spreadsheet/getting-started), [`ASP.NET Core`](https://ej2.syncfusion.com/aspnetcore/documentation/spreadsheet/getting-started-core), and [`ASP.NET MVC`](https://ej2.syncfusion.com/aspnetmvc/documentation/spreadsheet/getting-started-mvc).
138+
Please refer to these getting started pages to create a Spreadsheet in [`Angular`](https://help.syncfusion.com/document-processing/excel/spreadsheet/angular/getting-started), [`React`](https://help.syncfusion.com/document-processing/excel/spreadsheet/react/getting-started), [`Vue`](https://help.syncfusion.com/document-processing/excel/spreadsheet/vue/getting-started), [`ASP.NET Core`](https://help.syncfusion.com/document-processing/excel/spreadsheet/asp-net-core/getting-started-core), and [`ASP.NET MVC`](https://help.syncfusion.com/document-processing/excel/spreadsheet/asp-net-mvc/getting-started-mvc).

Document-Processing/Excel/Spreadsheet/Javascript-ES5/feature-list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The following table compares Excel functionality with the availability of EJ1 an
2020
| Scrolling | Partially | Yes | - |
2121
| Selection | Yes | Yes | - |
2222
| Editing | Yes | Yes | - |
23-
| Formulae | Yes | Partially | EJ2 supports limited number of [`most used formulas`](https://ej2.syncfusion.com/documentation/spreadsheet/formulas/#supported-formulas) |
23+
| Formulae | Yes | Partially | EJ2 supports limited number of [`most used formulas`](https://help.syncfusion.com/document-processing/excel/spreadsheet/javascript-es5/formulas#supported-formulas) |
2424
| Named range | Yes | Partially | EJ2 Spreadsheet Named range supports only in workbook scope |
2525
| Data Binding | Yes | Yes | - |
2626
| Formatting | Yes | Yes | - |

Document-Processing/Excel/Spreadsheet/Javascript-ES5/formulas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ In the example below, the Spreadsheet component is rendered with the `German` [`
4343

4444
## Create User Defined Functions / Custom Functions
4545

46-
The Spreadsheet includes a number of built-in formulas. For your convenience, a list of supported formulas can be found [here](https://ej2.syncfusion.com/documentation/spreadsheet/formulas#supported-formulas).
46+
The Spreadsheet includes a number of built-in formulas. For your convenience, a list of supported formulas can be found [here](https://help.syncfusion.com/document-processing/excel/spreadsheet/javascript-es5/formulas#supported-formulas).
4747

4848
You can define and use an unsupported formula, i.e. a user defined/custom formula, in the spreadsheet by using the [addCustomFunction](https://ej2.syncfusion.com/javascript/documentation/api/spreadsheet/#addcustomfunction) function. Meanwhile, remember that you should define a user defined/custom formula whose results should only return a single value. If a user-defined/custom formula returns an array, it will be time-consuming to update adjacent cell values.
4949

Document-Processing/Excel/Spreadsheet/Javascript-ES5/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ Output will be displayed as follows.
275275

276276
{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es5/spreadsheet/es5-getting-started-cs1" %}
277277

278-
> You can refer to our [JavaScript Spreadsheet](https://www.syncfusion.com/javascript-ui-controls/js-spreadsheet) feature tour page for its groundbreaking feature representations. You can also explore our [JavaScript Spreadsheet example](https://ej2.syncfusion.com/demos/#/material/spreadsheet/default.html) to knows how present and manipulate data, including editing, formulas, formatting, importing, and exporting.
278+
> You can refer to our [JavaScript Spreadsheet](https://www.syncfusion.com/spreadsheet-editor-sdk/javascript-spreadsheet-editor) feature tour page for its groundbreaking feature representations. You can also explore our [JavaScript Spreadsheet example](https://document.syncfusion.com/demos/spreadsheet-editor/javascript-es5/#/tailwind3/spreadsheet/default.html) to knows how present and manipulate data, including editing, formulas, formatting, importing, and exporting.
279279
280280
## See Also
281281

Document-Processing/Excel/Spreadsheet/Javascript-ES5/open-save.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -824,7 +824,7 @@ Open and save helper functions are shipped in the Syncfusion.EJ2.Spreadsheet pac
824824
* Syncfusion.Compression.Base
825825
* Syncfusion.XlsIO.Base
826826

827-
And also refer [this](https://ej2.syncfusion.com/aspnetcore/documentation/spreadsheet/open-save#server-dependencies) for more information.
827+
And also refer [this](https://help.syncfusion.com/document-processing/excel/spreadsheet/asp-net-core/open-save#server-dependencies) for more information.
828828

829829
## See Also
830830

Document-Processing/Excel/Spreadsheet/Javascript-ES5/performance-best-practices.md

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

1010
# Performance Best Practices in EJ2 Javascript Spreadsheet Control
1111

12-
Performance optimization is crucial when working with large datasets in the [Syncfusion® JavaScript Spreadsheet](https://www.syncfusion.com/javascript-ui-controls/js-spreadsheet). This documentation outlines best practices to enhance data handling efficiency and ensure a smooth, responsive user experience during various spreadsheet operations.
12+
Performance optimization is crucial when working with large datasets in the [Syncfusion® JavaScript Spreadsheet](https://www.syncfusion.com/spreadsheet-editor-sdk/javascript-spreadsheet-editor). This documentation outlines best practices to enhance data handling efficiency and ensure a smooth, responsive user experience during various spreadsheet operations.
1313

1414
## How to improve performance when opening Excel files in the Spreadsheet?
1515

@@ -28,7 +28,7 @@ When opening large Excel files with extensive data and features, server response
2828
These chunks are combined on the client side to load the Excel data smoothly into the Spreadsheet. This approach avoids transmission failures due to memory constraints and ensures reliable and efficient loading of large files.
2929

3030
To enable the chunk response processing feature, you can refer to the following UG section:
31-
* [Chunk Response Processing](https://ej2.syncfusion.com/javascript/documentation/spreadsheet/open-save#chunk-response-processing)
31+
* [Chunk Response Processing](https://help.syncfusion.com/document-processing/excel/spreadsheet/javascript-es5/open-save#chunk-response-processing)
3232

3333
### Configure JSON serialization options during open
3434

@@ -41,7 +41,7 @@ This is particularly useful when:
4141

4242
Refer to the following UG section to learn how to configure these options:
4343

44-
* [Configure JSON serialization options during open](https://ej2.syncfusion.com/javascript/documentation/spreadsheet/open-save#configure-json-deserialization-options)
44+
* [Configure JSON serialization options during open](https://help.syncfusion.com/document-processing/excel/spreadsheet/javascript-es5/open-save#configure-json-serialization-options)
4545

4646
### Configuring threshold limits
4747

@@ -96,8 +96,7 @@ Enabling manual mode is highly beneficial when:
9696
* Applying formulas dynamically to a large number of cells.
9797
* You want to postpone calculations until all content or changes are finalized.
9898

99-
To learn more about Manual Calculation Mode and how to enable it, you can refer to the following [UG link](https://ej2.syncfusion.com/javascript/documentation/spreadsheet/formulas#manual-mode).
100-
99+
To learn more about Manual Calculation Mode and how to enable it, you can refer to the following [UG link](https://help.syncfusion.com/document-processing/excel/spreadsheet/javascript-es5/formulas#manual-mode).
101100
## How to improve save performance in the Spreadsheet?
102101

103102
### Handling large file saves with `isFullPost` option
@@ -129,7 +128,7 @@ Proper use of serialization options during save improves performance and reduces
129128

130129
Refer to the following UG section to learn how to configure these options:
131130

132-
* [Configure JSON serialization options during save](https://ej2.syncfusion.com/javascript/documentation/spreadsheet/open-save#configure-json-serialization-options)
131+
* [Configure JSON serialization options during save](https://help.syncfusion.com/document-processing/excel/spreadsheet/javascript-es5/open-save#configure-json-serialization-options)
133132

134133
## How to improve cell selection performance in Spreadsheet?
135134

@@ -155,6 +154,6 @@ spreadsheet.appendTo('#spreadsheet');
155154

156155
## See Also
157156

158-
* [Open and Save](https://ej2.syncfusion.com/javascript/documentation/spreadsheet/open-save)
159-
* [Docker Deployment](https://ej2.syncfusion.com/javascript/documentation/spreadsheet/docker-deployment)
160-
* [Scrolling](https://ej2.syncfusion.com/javascript/documentation/spreadsheet/scrolling)
157+
* [Open and Save](https://help.syncfusion.com/document-processing/excel/spreadsheet/javascript-es5/open-save)
158+
* [Docker Deployment](https://help.syncfusion.com/document-processing/excel/spreadsheet/javascript-es5/docker-deployment)
159+
* [Scrolling](https://help.syncfusion.com/document-processing/excel/spreadsheet/javascript-es5/scrolling)

0 commit comments

Comments
 (0)