You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<li><a href="/document-processing/excel/spreadsheet/react/server-deployment/docker-deployment">How to Deploy Spreadsheet Docker Image Locally</a></li>
5234
+
<li><a href="/document-processing/excel/spreadsheet/react/server-deployment/how-to-deploy-spreadsheet-server-to-azure-app-service-using-visual-studio">Deploy Spreadsheet Server Docker Image to Azure App Service using Azure CLI</a></li>
5235
+
<li><a href="/document-processing/excel/spreadsheet/react/server-deployment/how-to-deploy-spreadsheet-server-to-azure-app-service-using-azure-cli">Deploy Spreadsheet Server to Azure App Service using Visual Studio</a></li>
Copy file name to clipboardExpand all lines: Document-Processing/Excel/Spreadsheet/Javascript-ES5/docker-deployment.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,17 @@
1
1
---
2
2
layout: post
3
-
title: Docker image deployment in EJ2 Javascript Spreadsheet control | Syncfusion
4
-
description: Learn here all about Docker image deployment in Syncfusion EJ2 Javascript Spreadsheet control of Syncfusion Essential JS 2 and more.
3
+
title: Docker image deployment in EJ2 JavaScript Spreadsheet | Syncfusion
4
+
description: Learn here all about Docker image deployment in Syncfusion EJ2 JavaScript Spreadsheet control of Syncfusion Essential JS 2 and more.
5
5
platform: document-processing
6
6
control: Docker deployment
7
7
documentation: ug
8
8
---
9
9
10
-
# Docker Image Overview in EJ2 Javascript Spreadsheet control
10
+
# Docker Image Overview in EJ2 JavaScript Spreadsheet control
11
11
12
12
The [**Syncfusion<supstyle="font-size:70%">®</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.
13
13
14
-
This Docker image is the pre-defined Docker container for Syncfusion's<supstyle="font-size:70%">®</sup> Spreadsheet backend functionalities. This server-side Web API project targets ASP.NET Core 8.0.
14
+
This Docker image is the pre-defined Docker container for Syncfusion's<supstyle="font-size:70%">®</sup> Spreadsheet back-end functionalities. This server-side Web API project targets ASP.NET Core 8.0.
15
15
16
16
You can deploy it quickly to your infrastructure. If you want to add new functionality or customize any existing functionalities, create your own Docker file by referencing the existing [Spreadsheet Docker project](https://github.com/SyncfusionExamples/Spreadsheet-Server-Docker).
17
17
@@ -57,7 +57,7 @@ docker-compose up
57
57
58
58
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`.
59
59
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)
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)
61
61
62
62
```html
63
63
<!DOCTYPE html>
@@ -103,7 +103,7 @@ Now the Spreadsheet server Docker instance runs on localhost with the provided p
103
103
<div id='Spreadsheet'></div>
104
104
<script>
105
105
// Initialize Spreadsheet component.
106
-
const spreadsheet = new ej.spreadsheet.Spreadsheet({
106
+
var spreadsheet = new ej.spreadsheet.Spreadsheet({
Copy file name to clipboardExpand all lines: Document-Processing/Excel/Spreadsheet/Javascript-ES5/formatting.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,13 @@
1
1
---
2
2
layout: post
3
-
title: Formatting in EJ2 Javascript Spreadsheet control | Syncfusion
4
-
description: Learn here all about Formatting in Syncfusion EJ2 Javascript Spreadsheet control of Syncfusion Essential JS 2 and more.
3
+
title: Formatting in EJ2 JavaScript Spreadsheet control | Syncfusion
4
+
description: Learn here all about Formatting in Syncfusion EJ2 JavaScript Spreadsheet control of Syncfusion Essential JS 2 and more.
5
5
platform: document-processing
6
6
control: Formatting
7
7
documentation: ug
8
8
---
9
9
10
-
# Formatting in EJ2 Javascript Spreadsheet control
10
+
# Formatting in EJ2 JavaScript Spreadsheet control
11
11
12
12
Formatting options make your data easier to view and understand. The different types of formatting options in the Spreadsheet are,
13
13
* Number Formatting
@@ -16,7 +16,7 @@ Formatting options make your data easier to view and understand. The different t
16
16
17
17
## Number Formatting
18
18
19
-
Number formatting provides a type for your data in the Spreadsheet. Use the [`allowNumberFormatting`](https://ej2.syncfusion.com/javascript/documentation/api/spreadsheet/#allownumberformatting) property to enable or disable the number formatting option in the Spreadsheet. The different types of number formatting supported in Spreadsheet are,
19
+
Number formatting provides a type for your data in the Spreadsheet. Use the [`allowNumberFormatting`](https://ej2.syncfusion.com/javascript/documentation/api/spreadsheet#allownumberformatting) property to enable or disable the number formatting option in the Spreadsheet. The different types of number formatting supported in Spreadsheet are,
20
20
21
21
| Types | Format Code | Format ID |
22
22
|---------|---------|---------|
@@ -35,7 +35,7 @@ Number formatting provides a type for your data in the Spreadsheet. Use the [`al
35
35
Number formatting can be applied in following ways,
36
36
* Using the `format` property in `cell`, you can set the desired format to each cell at initial load.
37
37
38
-
* Using the [`numberFormat`](https://ej2.syncfusion.com/javascript/documentation/api/spreadsheet/#numberformat) method, you can set the number format to a cell or range of cells.
38
+
* Using the [`numberFormat`](https://ej2.syncfusion.com/javascript/documentation/api/spreadsheet#numberformat) method, you can set the number format to a cell or range of cells.
39
39
40
40
* Selecting the number format option from ribbon toolbar.
41
41
@@ -86,7 +86,7 @@ The different types of custom number format populated in the custom number forma
86
86
87
87
Custom Number formatting can be applied in following ways,
88
88
89
-
* Using the [`numberFormat`](https://ej2.syncfusion.com/javascript/documentation/api/spreadsheet/#numberformat) method, you can set your own custom number format to a cell or range of cells.
89
+
* Using the [`numberFormat`](https://ej2.syncfusion.com/javascript/documentation/api/spreadsheet#numberformat) method, you can set your own custom number format to a cell or range of cells.
90
90
91
91
* Selecting the custom number format option from custom number formats dialog or type your own format in dialog input and then click apply button. It will apply the custom format for selected cells.
92
92
@@ -113,10 +113,10 @@ Compared to Excel, the date, time, currency, and accounting formats vary across
113
113
114
114
> The format code should use the default decimal separator (.) and group separator (,).
115
115
116
-
The code below illustrates how culture-based format codes are mapped to their corresponding number format ID for the `German (de)` culture.
116
+
The code below illustrates how culture-based format codes are mapped to their corresponding number format ID for the `German` culture.
117
117
118
118
```js
119
-
constdeLocaleFormats= [
119
+
var deLocaleFormats = [
120
120
{ id:14, code:'dd.MM.yyyy' },
121
121
{ id:15, code:'dd. MMM yy' },
122
122
{ id:16, code:'dd. MMM' },
@@ -157,9 +157,9 @@ The following code example demonstrates how to configure culture-based formats f
157
157
158
158
## Text and cell formatting
159
159
160
-
Text and cell formatting enhances the look and feel of your cell. It helps to highlight a particular cell or range of cells from a whole workbook. You can apply formats like font size, font family, font color, text alignment, border etc. to a cell or range of cells. Use the [`allowCellFormatting`](https://ej2.syncfusion.com/javascript/documentation/api/spreadsheet/#allowcellformatting) property to enable or disable the text and cell formatting option in Spreadsheet. You can set the formats in following ways,
160
+
Text and cell formatting enhances the look and feel of your cell. It helps to highlight a particular cell or range of cells from a whole workbook. You can apply formats like font size, font family, font color, text alignment, border etc. to a cell or range of cells. Use the [`allowCellFormatting`](https://ej2.syncfusion.com/javascript/documentation/api/spreadsheet#allowcellformatting) property to enable or disable the text and cell formatting option in Spreadsheet. You can set the formats in following ways,
161
161
* Using the `style` property, you can set formats to each cell at initial load.
162
-
* Using the [`cellFormat`](https://ej2.syncfusion.com/javascript/documentation/api/spreadsheet/#cellformat) method, you can set formats to a cell or range of cells.
162
+
* Using the [`cellFormat`](https://ej2.syncfusion.com/javascript/documentation/api/spreadsheet#cellformat) method, you can set formats to a cell or range of cells.
163
163
* You can also apply by clicking the desired format option from the ribbon toolbar.
164
164
165
165
### Fonts
@@ -234,7 +234,7 @@ The following features are not supported in Formatting:
234
234
235
235
## Conditional Formatting
236
236
237
-
Conditional formatting helps you to format a cell or range of cells based on the conditions applied. You can enable or disable conditional formats by using the [`allowConditionalFormat`](https://ej2.syncfusion.com/javascript/documentation/api/spreadsheet/#allowConditionalFormat) property.
237
+
Conditional formatting helps you to format a cell or range of cells based on the conditions applied. You can enable or disable conditional formats by using the [`allowConditionalFormat`](https://ej2.syncfusion.com/javascript/documentation/api/spreadsheet#allowConditionalFormat) property.
238
238
239
239
> The default value for the `allowConditionalFormat` property is `true`.
240
240
@@ -244,7 +244,7 @@ You can apply conditional formatting by using one of the following ways,
244
244
245
245
* Select the conditional formatting icon in the Ribbon toolbar under the Home Tab.
246
246
247
-
* Using the [`conditionalFormat()`](https://ej2.syncfusion.com/javascript/documentation/api/spreadsheet/#conditionalFormat) method to define the condition.
247
+
* Using the [`conditionalFormat()`](https://ej2.syncfusion.com/javascript/documentation/api/spreadsheet#conditionalFormat) method to define the condition.
248
248
249
249
* Using the `conditionalFormats` in sheets model.
250
250
@@ -312,7 +312,7 @@ You can clear the defined rules by using one of the following ways,
312
312
313
313
* Using the “Clear Rules” option in the Conditional Formatting button of HOME Tab in the ribbon to clear the rule from selected cells.
314
314
315
-
* Using the [`clearConditionalFormat()`](https://ej2.syncfusion.com/javascript/documentation/api/spreadsheet/#clearConditionalFormat) method to clear the defined rules.
315
+
* Using the [`clearConditionalFormat()`](https://ej2.syncfusion.com/javascript/documentation/api/spreadsheet#clearConditionalFormat) method to clear the defined rules.
0 commit comments