From c3c40f09bae630cdcd8ae4c10c848ff4d5d6fb00 Mon Sep 17 00:00:00 2001 From: babu-periyasamy Date: Sat, 6 Sep 2025 13:29:35 +0530 Subject: [PATCH 1/9] 976311: Removed unwanted endifs from the Spreadsheet Editor md pages. --- .../Spreadsheet/ASP-NET-CORE/data-binding.md | 110 ------------------ .../Spreadsheet/ASP-NET-CORE/global-local.md | 8 -- .../Spreadsheet/ASP-NET-MVC/protect-sheet.md | 1 - .../Javascript-ES6/illustrations.md | 3 - 4 files changed, 122 deletions(-) diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/data-binding.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/data-binding.md index 382d0de9b..4d0ab5057 100644 --- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/data-binding.md +++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/data-binding.md @@ -20,8 +20,6 @@ To bind local data to the Spreadsheet, you can assign a JavaScript object array Refer to the following code example for local data binding. -{% if page.publishingplatform == "aspnet-core" %} - {% tabs %} {% highlight cshtml tabtitle="CSHTML" %} {% include code-snippet/excel/spreadsheet/asp-net-core/local-data-binding/tagHelper %} @@ -31,19 +29,6 @@ Refer to the following code example for local data binding. {% endhighlight %} {% endtabs %} -{% elsif page.publishingplatform == "aspnet-mvc" %} - -{% tabs %} -{% highlight razor tabtitle="CSHTML" %} -{% include code-snippet/excel/spreadsheet/asp-net-core/local-data-binding/razor %} -{% endhighlight %} -{% highlight c# tabtitle="LocalDataController.cs" %} -{% include code-snippet/excel/spreadsheet/asp-net-core/local-data-binding/MVC/localDataController.cs %} -{% endhighlight %} -{% endtabs %} -{% endif %} - - N> The local data source can also be provided as an instance of the `DataManager`. By default, `DataManager` uses `JsonAdaptor` for local data-binding. @@ -56,8 +41,6 @@ By default, when a data source is bound to a sheet, columns are auto-assigned fr The following code example demonstrates how to customize the mapping of column data: -{% if page.publishingplatform == "aspnet-core" %} - {% tabs %} {% highlight cshtml tabtitle="CSHTML" %} {% include code-snippet/excel/spreadsheet/asp-net-core/field-mapping/tagHelper %} @@ -67,17 +50,6 @@ The following code example demonstrates how to customize the mapping of column d {% endhighlight %} {% endtabs %} -{% elsif page.publishingplatform == "aspnet-mvc" %} - -{% tabs %} -{% highlight razor tabtitle="CSHTML" %} -{% include code-snippet/excel/spreadsheet/asp-net-core/field-mapping/razor %} -{% endhighlight %} -{% highlight c# tabtitle="FieldMappingController.cs" %} -{% include code-snippet/excel/spreadsheet/asp-net-core/field-mapping/MVC/fieldMappingController.cs %} -{% endhighlight %} -{% endtabs %} -{% endif %} ## Remote data @@ -85,8 +57,6 @@ To bind remote data to the Spreadsheet control, assign service data as an instan Refer to the following code example for remote data binding. -{% if page.publishingplatform == "aspnet-core" %} - {% tabs %} {% highlight cshtml tabtitle="CSHTML" %} {% include code-snippet/excel/spreadsheet/asp-net-core/remote-data-binding/tagHelper %} @@ -96,18 +66,6 @@ Refer to the following code example for remote data binding. {% endhighlight %} {% endtabs %} -{% elsif page.publishingplatform == "aspnet-mvc" %} - -{% tabs %} -{% highlight razor tabtitle="CSHTML" %} -{% include code-snippet/excel/spreadsheet/asp-net-core/remote-data-binding/razor %} -{% endhighlight %} -{% highlight c# tabtitle="RemoteDataController.cs" %} -{% include code-snippet/excel/spreadsheet/asp-net-core/remote-data-binding/MVC/remoteDataController.cs %} -{% endhighlight %} -{% endtabs %} -{% endif %} - N> By default, `DataManager` uses **ODataAdaptor** for remote data-binding. @@ -116,8 +74,6 @@ N> By default, `DataManager` uses **ODataAdaptor** for remote data-binding. `OData` is a standardized protocol for creating and consuming data. You can retrieve data from OData service using the DataManager. Refer to the following code example for remote Data binding using OData service. -{% if page.publishingplatform == "aspnet-core" %} - {% tabs %} {% highlight cshtml tabtitle="CSHTML" %} {% include code-snippet/excel/spreadsheet/asp-net-core/odata-adaptor/tagHelper %} @@ -127,26 +83,12 @@ N> By default, `DataManager` uses **ODataAdaptor** for remote data-binding. {% endhighlight %} {% endtabs %} -{% elsif page.publishingplatform == "aspnet-mvc" %} - -{% tabs %} -{% highlight razor tabtitle="CSHTML" %} -{% include code-snippet/excel/spreadsheet/asp-net-core/odata-adaptor/razor %} -{% endhighlight %} -{% highlight c# tabtitle="ODataController.cs" %} -{% include code-snippet/excel/spreadsheet/asp-net-core/odata-adaptor/MVC/oDataController.cs %} -{% endhighlight %} -{% endtabs %} -{% endif %} - ### Web API You can use WebApiAdaptor to bind spreadsheet with Web API created using OData endpoint. -{% if page.publishingplatform == "aspnet-core" %} - {% tabs %} {% highlight cshtml tabtitle="CSHTML" %} {% include code-snippet/excel/spreadsheet/asp-net-core/webapi-adaptor/tagHelper %} @@ -156,18 +98,6 @@ You can use WebApiAdaptor to bind spreadsheet with Web API created using OData e {% endhighlight %} {% endtabs %} -{% elsif page.publishingplatform == "aspnet-mvc" %} - -{% tabs %} -{% highlight razor tabtitle="CSHTML" %} -{% include code-snippet/excel/spreadsheet/asp-net-core/webapi-adaptor/razor %} -{% endhighlight %} -{% highlight c# tabtitle="WebApiController.cs" %} -{% include code-snippet/excel/spreadsheet/asp-net-core/webapi-adaptor/MVC/webApiController.cs %} -{% endhighlight %} -{% endtabs %} -{% endif %} - ## Cell data binding @@ -187,18 +117,6 @@ Refer to the following code example for cell data binding. {% endhighlight %} {% endtabs %} -{% elsif page.publishingplatform == "aspnet-mvc" %} - -{% tabs %} -{% highlight razor tabtitle="CSHTML" %} -{% include code-snippet/excel/spreadsheet/asp-net-core/cell-data-binding/razor %} -{% endhighlight %} -{% highlight c# tabtitle="CellDataController.cs" %} -{% include code-snippet/excel/spreadsheet/asp-net-core/cell-data-binding/MVC/cellDataController.cs %} -{% endhighlight %} -{% endtabs %} -{% endif %} - N> The cell data binding also supports formula, style, number format, and more. @@ -219,8 +137,6 @@ The following table defines the arguments of the `dataSourceChanged` event. N> For `add` action, the value for all the fields will be `null` in the data. In the case that you do not want the primary key field to be null which needs to be updated in the backend service, you can use `edit` action after updating the primary key field to update in the backend service.


For inserting a row at the end of the datasource range, you should insert a row below at the end of the range to trigger the `dataSourceChanged` event with action `add`. -{% if page.publishingplatform == "aspnet-core" %} - {% tabs %} {% highlight cshtml tabtitle="CSHTML" %} {% include code-snippet/excel/spreadsheet/asp-net-core/dynamic-data-binding/tagHelper %} @@ -230,18 +146,6 @@ N> For `add` action, the value for all the fields will be `null` in the data. In {% endhighlight %} {% endtabs %} -{% elsif page.publishingplatform == "aspnet-mvc" %} - -{% tabs %} -{% highlight razor tabtitle="CSHTML" %} -{% include code-snippet/excel/spreadsheet/asp-net-core/dynamic-data-binding/razor %} -{% endhighlight %} -{% highlight c# tabtitle="DynamicDataController.cs" %} -{% include code-snippet/excel/spreadsheet/asp-net-core/dynamic-data-binding/MVC/dynamicDataController.cs %} -{% endhighlight %} -{% endtabs %} -{% endif %} - ## Dynamic data binding using updateRange method The `updateRange` method allows you to dynamically update the `dataSource` in a spreadsheet without manually iterating through each cell. This method is especially useful for efficiently applying bulk updates to a specific range within the spreadsheet. @@ -250,8 +154,6 @@ To use the `updateRange` method, provide the new `dataSource` and specify the st The following code example demonstrates how to dynamically update data using the `updateRange` method. -{% if page.publishingplatform == "aspnet-core" %} - {% tabs %} {% highlight cshtml tabtitle="CSHTML" %} {% include code-snippet/excel/spreadsheet/asp-net-core/dynamic-data-binding-cs2/tagHelper %} @@ -261,18 +163,6 @@ The following code example demonstrates how to dynamically update data using the {% endhighlight %} {% endtabs %} -{% elsif page.publishingplatform == "aspnet-mvc" %} - -{% tabs %} -{% highlight razor tabtitle="CSHTML" %} -{% include code-snippet/excel/spreadsheet/asp-net-core/dynamic-data-binding-cs2/razor %} -{% endhighlight %} -{% highlight c# tabtitle="UpdateRangeController.cs" %} -{% include code-snippet/excel/spreadsheet/asp-net-core/dynamic-data-binding-cs2/MVC/updateRangeController.cs %} -{% endhighlight %} -{% endtabs %} -{% endif %} - ## See Also * [Filtering](filter) diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/global-local.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/global-local.md index 316f8b41b..376463103 100644 --- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/global-local.md +++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/global-local.md @@ -425,12 +425,4 @@ RTL provides an option to switch the text direction and layout of the Spreadshee ## See Also -{% if page.publishingplatform == "aspnet-core" %} - * [Localization](https://ej2.syncfusion.com/aspnetcore/documentation/common/localization) - -{% elsif page.publishingplatform == "aspnet-mvc" %} - -* [Localization](https://ej2.syncfusion.com/aspnetmvc/documentation/common/localization/) - -{% endif %} \ No newline at end of file diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/protect-sheet.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/protect-sheet.md index 2ed638521..dfecb210a 100644 --- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/protect-sheet.md +++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/protect-sheet.md @@ -52,7 +52,6 @@ The following example shows `Protect Sheet` functionality with password in the S {% include code-snippet/excel/spreadsheet/asp-net-mvc/protect-sheet/protectSheetController.cs %} {% endhighlight %} {% endtabs %} -{% endif %} diff --git a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/illustrations.md b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/illustrations.md index 57cb46bd3..437faeb36 100644 --- a/Document-Processing/Excel/Spreadsheet/Javascript-ES6/illustrations.md +++ b/Document-Processing/Excel/Spreadsheet/Javascript-ES6/illustrations.md @@ -166,9 +166,6 @@ Chart feature allows you to view and insert a chart in a spreadsheet, and you ca {% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/chart-cs1" %} -{% previewsample "https://helpstaging.syncfusion.com/document-processing/code-snippet/excel/spreadsheet/javascript-es6/chart-cs1" %} -{% endif %} - #### Customization of line chart markers Using the [`actionBegin`](https://ej2.syncfusion.com/documentation/api/spreadsheet/#actionbegin) event, you can change the shape, size, fill color, and border of the line chart marker. In the following example, you can see the modified marker appearance, such as shape and size, while creating the line chart with UI interaction. From 72d314aebf719534311ed91777aa9f3b3255ccb0 Mon Sep 17 00:00:00 2001 From: babu-periyasamy Date: Sat, 6 Sep 2025 13:56:15 +0530 Subject: [PATCH 2/9] 976311: Removed unwanted endifs from the Spreadsheet Editor md pages. --- .../Excel/Spreadsheet/ASP-NET-CORE/data-binding.md | 2 -- .../Excel/Spreadsheet/ASP-NET-CORE/global-local.md | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/data-binding.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/data-binding.md index 4d0ab5057..c3166f16f 100644 --- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/data-binding.md +++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/data-binding.md @@ -106,8 +106,6 @@ The Spreadsheet control can bind the data to individual cell in a sheet . To ach Refer to the following code example for cell data binding. -{% if page.publishingplatform == "aspnet-core" %} - {% tabs %} {% highlight cshtml tabtitle="CSHTML" %} {% include code-snippet/excel/spreadsheet/asp-net-core/cell-data-binding/tagHelper %} diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/global-local.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/global-local.md index 376463103..7c4bd8366 100644 --- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/global-local.md +++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/global-local.md @@ -7,7 +7,7 @@ control: Global Local documentation: ug --- -# Globalization in ASP.NET MVC Spreadsheet control +# Globalization in ASP.NET Core Spreadsheet control ## Localization From 1a4d117bd4b0f27559eb6cf2bd803d4a96b9bdd9 Mon Sep 17 00:00:00 2001 From: DinakarSF4212 <147583019+DinakarSF4212@users.noreply.github.com> Date: Sat, 6 Sep 2025 14:13:07 +0530 Subject: [PATCH 3/9] 977949: Updated Open and Save URLs and resolved CI errors. --- .../Excel/Spreadsheet/ASP-NET-CORE/data-binding.md | 6 ++---- .../Excel/Spreadsheet/ASP-NET-CORE/global-local.md | 2 +- .../Excel/Spreadsheet/ASP-NET-CORE/protect-sheet.md | 6 +++--- .../Excel/Spreadsheet/ASP-NET-MVC/data-binding.md | 2 +- .../Excel/Spreadsheet/ASP-NET-MVC/protect-sheet.md | 6 +++--- .../Excel/Spreadsheet/React/nextjs-getting-started.md | 4 ++-- .../Excel/Spreadsheet/React/performance-best-practices.md | 8 ++++---- .../excel/spreadsheet/asp-net-core/open-from-json/razor | 2 +- .../spreadsheet/asp-net-core/open-from-json/tagHelper | 2 +- .../excel/spreadsheet/asp-net-core/open-save/razor | 8 ++++---- .../excel/spreadsheet/asp-net-core/open-save/tagHelper | 8 ++++---- .../excel/spreadsheet/asp-net-core/save-as-json/razor | 2 +- .../excel/spreadsheet/asp-net-core/save-as-json/tagHelper | 2 +- .../excel/spreadsheet/asp-net-core/save-header/razor | 2 +- .../excel/spreadsheet/asp-net-core/save-header/tagHelper | 2 +- .../excel/spreadsheet/asp-net-mvc/open-from-json/razor | 2 +- .../spreadsheet/asp-net-mvc/open-from-json/tagHelper | 2 +- .../excel/spreadsheet/asp-net-mvc/open-save/razor | 8 ++++---- .../excel/spreadsheet/asp-net-mvc/open-save/tagHelper | 8 ++++---- .../excel/spreadsheet/asp-net-mvc/save-as-json/razor | 2 +- .../excel/spreadsheet/asp-net-mvc/save-as-json/tagHelper | 2 +- .../excel/spreadsheet/asp-net-mvc/save-header/razor | 2 +- .../excel/spreadsheet/asp-net-mvc/save-header/tagHelper | 2 +- .../excel/spreadsheet/react/base-64-string/app/app.jsx | 4 ++-- .../excel/spreadsheet/react/base-64-string/app/app.tsx | 4 ++-- .../spreadsheet/react/change-active-sheet-cs1/app/app.jsx | 4 ++-- .../spreadsheet/react/change-active-sheet-cs1/app/app.tsx | 4 ++-- .../excel/spreadsheet/react/note-cs1/app/app.jsx | 2 +- .../excel/spreadsheet/react/note-cs1/app/app.tsx | 2 +- .../excel/spreadsheet/react/note-cs2/app/app.jsx | 2 +- .../excel/spreadsheet/react/note-cs2/app/app.tsx | 2 +- .../excel/spreadsheet/react/note-cs3/app/app.jsx | 2 +- .../excel/spreadsheet/react/note-cs3/app/app.tsx | 2 +- .../spreadsheet/react/open-from-blobdata-cs1/app/app.jsx | 2 +- .../spreadsheet/react/open-from-blobdata-cs1/app/app.tsx | 2 +- .../excel/spreadsheet/react/open-from-json/app/app.jsx | 2 +- .../excel/spreadsheet/react/open-from-json/app/app.tsx | 2 +- .../excel/spreadsheet/react/open-save-cs1/app/app.jsx | 2 +- .../excel/spreadsheet/react/open-save-cs1/app/app.tsx | 2 +- .../excel/spreadsheet/react/open-save-cs2/app/app.jsx | 2 +- .../excel/spreadsheet/react/open-save-cs2/app/app.tsx | 2 +- .../excel/spreadsheet/react/open-save-cs3/app/app.jsx | 2 +- .../excel/spreadsheet/react/open-save-cs3/app/app.tsx | 2 +- .../excel/spreadsheet/react/open-save-cs4/app/app.jsx | 2 +- .../excel/spreadsheet/react/open-save-cs4/app/app.tsx | 2 +- .../excel/spreadsheet/react/open-save-cs5/app/app.jsx | 2 +- .../excel/spreadsheet/react/open-save-cs5/app/app.tsx | 2 +- .../excel/spreadsheet/react/open-save-cs6/app/app.jsx | 2 +- .../excel/spreadsheet/react/open-save-cs6/app/app.tsx | 2 +- .../excel/spreadsheet/react/open-save-cs7/app/app.jsx | 4 ++-- .../excel/spreadsheet/react/open-save-cs7/app/app.tsx | 4 ++-- .../excel/spreadsheet/react/open-save-cs8/app/app.jsx | 2 +- .../excel/spreadsheet/react/open-save-cs8/app/app.tsx | 2 +- .../excel/spreadsheet/react/open-save-cs9/app/app.jsx | 2 +- .../excel/spreadsheet/react/open-save-cs9/app/app.tsx | 2 +- .../excel/spreadsheet/react/print-cs2/app/app.jsx | 2 +- .../excel/spreadsheet/react/print-cs2/app/app.tsx | 2 +- .../excel/spreadsheet/react/print-cs3/app/app.jsx | 2 +- .../excel/spreadsheet/react/print-cs3/app/app.tsx | 2 +- .../excel/spreadsheet/react/readonly-cs1/app/app.jsx | 2 +- .../excel/spreadsheet/react/readonly-cs1/app/app.tsx | 2 +- .../excel/spreadsheet/react/ribbon-cs1/app/app.jsx | 4 ++-- .../excel/spreadsheet/react/ribbon-cs1/app/app.tsx | 4 ++-- .../spreadsheet/react/save-as-blobdata-cs1/app/app.jsx | 2 +- .../spreadsheet/react/save-as-blobdata-cs1/app/app.tsx | 2 +- .../excel/spreadsheet/react/save-as-json/app/app.jsx | 4 ++-- .../excel/spreadsheet/react/save-as-json/app/app.tsx | 4 ++-- .../excel/spreadsheet/react/save-cs1/app/app.jsx | 8 ++++---- .../excel/spreadsheet/react/save-cs1/app/app.tsx | 8 ++++---- .../spreadsheet/react/sheet-visiblity-cs1/app/app.jsx | 4 ++-- .../spreadsheet/react/sheet-visiblity-cs1/app/app.tsx | 4 ++-- 71 files changed, 110 insertions(+), 112 deletions(-) diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/data-binding.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/data-binding.md index 4d0ab5057..b5d8f24ad 100644 --- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/data-binding.md +++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/data-binding.md @@ -8,7 +8,7 @@ documentation: ug --- -# Data Binding in Spreadsheet Control +# Data Binding in ASP.NET Core Spreadsheet Control The Spreadsheet uses `DataManager`, 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` or JavaScript object array collection. @@ -102,12 +102,10 @@ You can use WebApiAdaptor to bind spreadsheet with Web API created using OData e ## Cell data binding -The Spreadsheet control can bind the data to individual cell in a sheet . To achive this you can use the `value` property. +The Spreadsheet control can bind the data to individual cell in a sheet . To achieve this you can use the `value` property. Refer to the following code example for cell data binding. -{% if page.publishingplatform == "aspnet-core" %} - {% tabs %} {% highlight cshtml tabtitle="CSHTML" %} {% include code-snippet/excel/spreadsheet/asp-net-core/cell-data-binding/tagHelper %} diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/global-local.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/global-local.md index 376463103..7c4bd8366 100644 --- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/global-local.md +++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/global-local.md @@ -7,7 +7,7 @@ control: Global Local documentation: ug --- -# Globalization in ASP.NET MVC Spreadsheet control +# Globalization in ASP.NET Core Spreadsheet control ## Localization diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/protect-sheet.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/protect-sheet.md index 91b431fbb..89f94449d 100644 --- a/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/protect-sheet.md +++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/protect-sheet.md @@ -8,7 +8,7 @@ documentation: ug --- -# Protection in Spreadsheet Control +# Protection in ASP.NET Core Spreadsheet Control Sheet protection helps you to prevent the users from modifying the data in the spreadsheet. @@ -65,7 +65,7 @@ Unprotect sheet is used to enable all the functionalities that are already disab **User Interface**: -In the active Spreadsheet, the sheet Unprotection can be done by any of the following ways: +In the active Spreadsheet, the sheet can be unprotected by any of the following ways: * Select the `Unprotect Sheet` item in the Ribbon toolbar under the Data Tab. * Right-click the sheet tab, select the `Unprotect Sheet` item in the context menu. @@ -168,7 +168,7 @@ Unprotect Workbook is used to enable the insert, delete, rename, move, copy, hid **User Interface**: -In the active Spreadsheet, the workbook Unprotection can be done in any of the following ways: +In the active Spreadsheet, the workbook can be unprotected in any of the following ways: * Select the `Unprotect Workbook` item in the Ribbon toolbar under the Data Tab and provide the valid password in the dialog box. diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/data-binding.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/data-binding.md index 6c68141c6..7eacc59fb 100644 --- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/data-binding.md +++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/data-binding.md @@ -8,7 +8,7 @@ documentation: ug --- -# Data Binding in Spreadsheet Control +# Data Binding in ASP.NET MVC Spreadsheet Control The Spreadsheet uses `DataManager`, 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` or JavaScript object array collection. diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/protect-sheet.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/protect-sheet.md index dfecb210a..91e1aab08 100644 --- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/protect-sheet.md +++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/protect-sheet.md @@ -8,7 +8,7 @@ documentation: ug --- -# Protection in Spreadsheet Control +# Protection in ASP.NET MVC Spreadsheet Control Sheet protection helps you to prevent the users from modifying the data in the spreadsheet. @@ -65,7 +65,7 @@ Unprotect sheet is used to enable all the functionalities that are already disab **User Interface**: -In the active Spreadsheet, the sheet Unprotection can be done by any of the following ways: +In the active Spreadsheet, the sheet can be unprotected by any of the following ways: * Select the `Unprotect Sheet` item in the Ribbon toolbar under the Data Tab. * Right-click the sheet tab, select the `Unprotect Sheet` item in the context menu. @@ -168,7 +168,7 @@ Unprotect Workbook is used to enable the insert, delete, rename, move, copy, hid **User Interface**: -In the active Spreadsheet, the workbook Unprotection can be done in any of the following ways: +In the active Spreadsheet, the workbook can be unprotected in any of the following ways: * Select the `Unprotect Workbook` item in the Ribbon toolbar under the Data Tab and provide the valid password in the dialog box. diff --git a/Document-Processing/Excel/Spreadsheet/React/nextjs-getting-started.md b/Document-Processing/Excel/Spreadsheet/React/nextjs-getting-started.md index 63e5bef68..6397148cd 100644 --- a/Document-Processing/Excel/Spreadsheet/React/nextjs-getting-started.md +++ b/Document-Processing/Excel/Spreadsheet/React/nextjs-getting-started.md @@ -394,8 +394,8 @@ export default function Home(this: any) { return ( <>

Syncfusion React Spreadsheet Component

- { spreadsheet = Obj as SpreadsheetComponent }} created={onCreated.bind(this)} > diff --git a/Document-Processing/Excel/Spreadsheet/React/performance-best-practices.md b/Document-Processing/Excel/Spreadsheet/React/performance-best-practices.md index 3f1335cf1..cd2c9a31f 100644 --- a/Document-Processing/Excel/Spreadsheet/React/performance-best-practices.md +++ b/Document-Processing/Excel/Spreadsheet/React/performance-best-practices.md @@ -121,7 +121,7 @@ function App() { } return (
- +
); @@ -145,7 +145,7 @@ function App() { } return (
- +
); @@ -199,7 +199,7 @@ function App() { const spreadsheetRef = React.useRef(null); return (
- +
); @@ -219,7 +219,7 @@ function App() { const spreadsheetRef = React.useRef(null); return (
- +
); diff --git a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/open-from-json/razor b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/open-from-json/razor index 0a427a77d..0d1f7543d 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/open-from-json/razor +++ b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/open-from-json/razor @@ -52,7 +52,7 @@ RemoveUrl = "https://services.syncfusion.com/aspnet/production/api/FileUploader/ var valueOnlyCheckbox = document.getElementById("valueOnly").checked; var options = valueOnlyCheckbox ? { onlyValues: true } : createOptions(); fetch( - 'https://services.syncfusion.com/aspnet/production/api/spreadsheet/open', + 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/open', args.requestData ).then((response) => { response.json().then((data) => { diff --git a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/open-from-json/tagHelper b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/open-from-json/tagHelper index 058219f68..93ed34c00 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/open-from-json/tagHelper +++ b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/open-from-json/tagHelper @@ -57,7 +57,7 @@ var asyncSettings = new Syncfusion.EJ2.Inputs.UploaderAsyncSettings { SaveUrl = var valueOnlyCheckbox = document.getElementById("valueOnly").checked; var options = valueOnlyCheckbox ? { onlyValues: true } : createOptions(); fetch( - 'https://services.syncfusion.com/aspnet/production/api/spreadsheet/open', + 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/open', args.requestData ).then((response) => { response.json().then((data) => { diff --git a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/open-save/razor b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/open-save/razor index ac6eb3f33..067589b30 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/open-save/razor +++ b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/open-save/razor @@ -12,12 +12,12 @@ function itemSelect(args) { var spreadsheetObj = ej.base.getComponent(document.getElementById('spreadsheet'), 'spreadsheet'); if (args.item.text === 'Save As xlsx') - spreadsheetObj.save({url: 'https://services.syncfusion.com/aspnet/production/api/spreadsheet/save', fileName: "Sample", saveType: "Xlsx"}); + spreadsheetObj.save({url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', fileName: "Sample", saveType: "Xlsx"}); if (args.item.text === 'Save As xls') - spreadsheetObj.save({url: 'https://services.syncfusion.com/aspnet/production/api/spreadsheet/save', fileName: "Sample", saveType: "Xls"}); + spreadsheetObj.save({url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', fileName: "Sample", saveType: "Xls"}); if (args.item.text === 'Save As csv') - spreadsheetObj.save({url: 'https://services.syncfusion.com/aspnet/production/api/spreadsheet/save',fileName: "Sample", saveType: "Csv"}); + spreadsheetObj.save({url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save',fileName: "Sample", saveType: "Csv"}); if (args.item.text === 'Save As pdf') - spreadsheetObj.save({url: 'https://services.syncfusion.com/aspnet/production/api/spreadsheet/save',fileName: "Sample", saveType: "Pdf"}); + spreadsheetObj.save({url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save',fileName: "Sample", saveType: "Pdf"}); } \ No newline at end of file diff --git a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/open-save/tagHelper b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/open-save/tagHelper index 0c2d3abb3..9b9bff5d0 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/open-save/tagHelper +++ b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/open-save/tagHelper @@ -14,12 +14,12 @@ function itemSelect(args) { var spreadsheetObj = ej.base.getComponent(document.getElementById('spreadsheet'), 'spreadsheet'); if (args.item.text === 'Save As xlsx') - spreadsheetObj.save({url: 'https://services.syncfusion.com/aspnet/production/api/spreadsheet/save', fileName: "Sample", saveType: "Xlsx"}); + spreadsheetObj.save({url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', fileName: "Sample", saveType: "Xlsx"}); if (args.item.text === 'Save As xls') - spreadsheetObj.save({url: 'https://services.syncfusion.com/aspnet/production/api/spreadsheet/save', fileName: "Sample", saveType: "Xls"}); + spreadsheetObj.save({url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', fileName: "Sample", saveType: "Xls"}); if (args.item.text === 'Save As csv') - spreadsheetObj.save({url: 'https://services.syncfusion.com/aspnet/production/api/spreadsheet/save',fileName: "Sample", saveType: "Csv"}); + spreadsheetObj.save({url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save',fileName: "Sample", saveType: "Csv"}); if (args.item.text === 'Save As pdf') - spreadsheetObj.save({url: 'https://services.syncfusion.com/aspnet/production/api/spreadsheet/save',fileName: "Sample", saveType: "Pdf"}); + spreadsheetObj.save({url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save',fileName: "Sample", saveType: "Pdf"}); } \ No newline at end of file diff --git a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/save-as-json/razor b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/save-as-json/razor index bda46817b..d6148201e 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/save-as-json/razor +++ b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/save-as-json/razor @@ -79,7 +79,7 @@ formData.append('saveType', 'Xlsx'); formData.append('pdfLayoutSettings', JSON.stringify({ fitSheetOnOnePage: false, orientation: 'Portrait' })), fetch( - 'https://services.syncfusion.com/aspnet/production/api/spreadsheet/save', + 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', { method: 'POST', body: formData, diff --git a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/save-as-json/tagHelper b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/save-as-json/tagHelper index 19a0f709d..2e0b31260 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/save-as-json/tagHelper +++ b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/save-as-json/tagHelper @@ -79,7 +79,7 @@ formData.append('saveType', 'Xlsx'); formData.append('pdfLayoutSettings', JSON.stringify({ fitSheetOnOnePage: false, orientation: 'Portrait' })), fetch( - 'https://services.syncfusion.com/aspnet/production/api/spreadsheet/save', + 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', { method: 'POST', body: formData, diff --git a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/save-header/razor b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/save-header/razor index e0279a149..f5695e64f 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/save-header/razor +++ b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/save-header/razor @@ -22,7 +22,7 @@ function fileMenuItemSelect(args) { formData.append("saveType", "Xlsx"); formData.append("pdfLayoutSettings", JSON.stringify({ fitSheetOnOnePage: false, orientation: "Portrait" })); fetch( - "https://services.syncfusion.com/aspnet/production/api/spreadsheet/save", + "https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save", { method: "POST", headers: { Authorization: "YOUR TEXT" }, diff --git a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/save-header/tagHelper b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/save-header/tagHelper index cf72a06bc..e7104cd8c 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/save-header/tagHelper +++ b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-core/save-header/tagHelper @@ -24,7 +24,7 @@ formData.append("saveType", "Xlsx"); formData.append("pdfLayoutSettings", JSON.stringify({ fitSheetOnOnePage: false, orientation: "Portrait" })); fetch( - "https://services.syncfusion.com/aspnet/production/api/spreadsheet/save", + "https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save", { method: "POST", headers: { Authorization: "YOUR TEXT" }, diff --git a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/open-from-json/razor b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/open-from-json/razor index 0a427a77d..0d1f7543d 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/open-from-json/razor +++ b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/open-from-json/razor @@ -52,7 +52,7 @@ RemoveUrl = "https://services.syncfusion.com/aspnet/production/api/FileUploader/ var valueOnlyCheckbox = document.getElementById("valueOnly").checked; var options = valueOnlyCheckbox ? { onlyValues: true } : createOptions(); fetch( - 'https://services.syncfusion.com/aspnet/production/api/spreadsheet/open', + 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/open', args.requestData ).then((response) => { response.json().then((data) => { diff --git a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/open-from-json/tagHelper b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/open-from-json/tagHelper index 058219f68..93ed34c00 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/open-from-json/tagHelper +++ b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/open-from-json/tagHelper @@ -57,7 +57,7 @@ var asyncSettings = new Syncfusion.EJ2.Inputs.UploaderAsyncSettings { SaveUrl = var valueOnlyCheckbox = document.getElementById("valueOnly").checked; var options = valueOnlyCheckbox ? { onlyValues: true } : createOptions(); fetch( - 'https://services.syncfusion.com/aspnet/production/api/spreadsheet/open', + 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/open', args.requestData ).then((response) => { response.json().then((data) => { diff --git a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/open-save/razor b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/open-save/razor index ac6eb3f33..067589b30 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/open-save/razor +++ b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/open-save/razor @@ -12,12 +12,12 @@ function itemSelect(args) { var spreadsheetObj = ej.base.getComponent(document.getElementById('spreadsheet'), 'spreadsheet'); if (args.item.text === 'Save As xlsx') - spreadsheetObj.save({url: 'https://services.syncfusion.com/aspnet/production/api/spreadsheet/save', fileName: "Sample", saveType: "Xlsx"}); + spreadsheetObj.save({url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', fileName: "Sample", saveType: "Xlsx"}); if (args.item.text === 'Save As xls') - spreadsheetObj.save({url: 'https://services.syncfusion.com/aspnet/production/api/spreadsheet/save', fileName: "Sample", saveType: "Xls"}); + spreadsheetObj.save({url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', fileName: "Sample", saveType: "Xls"}); if (args.item.text === 'Save As csv') - spreadsheetObj.save({url: 'https://services.syncfusion.com/aspnet/production/api/spreadsheet/save',fileName: "Sample", saveType: "Csv"}); + spreadsheetObj.save({url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save',fileName: "Sample", saveType: "Csv"}); if (args.item.text === 'Save As pdf') - spreadsheetObj.save({url: 'https://services.syncfusion.com/aspnet/production/api/spreadsheet/save',fileName: "Sample", saveType: "Pdf"}); + spreadsheetObj.save({url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save',fileName: "Sample", saveType: "Pdf"}); } \ No newline at end of file diff --git a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/open-save/tagHelper b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/open-save/tagHelper index 0c2d3abb3..9b9bff5d0 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/open-save/tagHelper +++ b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/open-save/tagHelper @@ -14,12 +14,12 @@ function itemSelect(args) { var spreadsheetObj = ej.base.getComponent(document.getElementById('spreadsheet'), 'spreadsheet'); if (args.item.text === 'Save As xlsx') - spreadsheetObj.save({url: 'https://services.syncfusion.com/aspnet/production/api/spreadsheet/save', fileName: "Sample", saveType: "Xlsx"}); + spreadsheetObj.save({url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', fileName: "Sample", saveType: "Xlsx"}); if (args.item.text === 'Save As xls') - spreadsheetObj.save({url: 'https://services.syncfusion.com/aspnet/production/api/spreadsheet/save', fileName: "Sample", saveType: "Xls"}); + spreadsheetObj.save({url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', fileName: "Sample", saveType: "Xls"}); if (args.item.text === 'Save As csv') - spreadsheetObj.save({url: 'https://services.syncfusion.com/aspnet/production/api/spreadsheet/save',fileName: "Sample", saveType: "Csv"}); + spreadsheetObj.save({url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save',fileName: "Sample", saveType: "Csv"}); if (args.item.text === 'Save As pdf') - spreadsheetObj.save({url: 'https://services.syncfusion.com/aspnet/production/api/spreadsheet/save',fileName: "Sample", saveType: "Pdf"}); + spreadsheetObj.save({url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save',fileName: "Sample", saveType: "Pdf"}); } \ No newline at end of file diff --git a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/save-as-json/razor b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/save-as-json/razor index bda46817b..d6148201e 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/save-as-json/razor +++ b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/save-as-json/razor @@ -79,7 +79,7 @@ formData.append('saveType', 'Xlsx'); formData.append('pdfLayoutSettings', JSON.stringify({ fitSheetOnOnePage: false, orientation: 'Portrait' })), fetch( - 'https://services.syncfusion.com/aspnet/production/api/spreadsheet/save', + 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', { method: 'POST', body: formData, diff --git a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/save-as-json/tagHelper b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/save-as-json/tagHelper index 19a0f709d..2e0b31260 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/save-as-json/tagHelper +++ b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/save-as-json/tagHelper @@ -79,7 +79,7 @@ formData.append('saveType', 'Xlsx'); formData.append('pdfLayoutSettings', JSON.stringify({ fitSheetOnOnePage: false, orientation: 'Portrait' })), fetch( - 'https://services.syncfusion.com/aspnet/production/api/spreadsheet/save', + 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', { method: 'POST', body: formData, diff --git a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/save-header/razor b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/save-header/razor index e0279a149..f5695e64f 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/save-header/razor +++ b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/save-header/razor @@ -22,7 +22,7 @@ function fileMenuItemSelect(args) { formData.append("saveType", "Xlsx"); formData.append("pdfLayoutSettings", JSON.stringify({ fitSheetOnOnePage: false, orientation: "Portrait" })); fetch( - "https://services.syncfusion.com/aspnet/production/api/spreadsheet/save", + "https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save", { method: "POST", headers: { Authorization: "YOUR TEXT" }, diff --git a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/save-header/tagHelper b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/save-header/tagHelper index cf72a06bc..e7104cd8c 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/save-header/tagHelper +++ b/Document-Processing/code-snippet/excel/spreadsheet/asp-net-mvc/save-header/tagHelper @@ -24,7 +24,7 @@ formData.append("saveType", "Xlsx"); formData.append("pdfLayoutSettings", JSON.stringify({ fitSheetOnOnePage: false, orientation: "Portrait" })); fetch( - "https://services.syncfusion.com/aspnet/production/api/spreadsheet/save", + "https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save", { method: "POST", headers: { Authorization: "YOUR TEXT" }, diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/base-64-string/app/app.jsx b/Document-Processing/code-snippet/excel/spreadsheet/react/base-64-string/app/app.jsx index d8124598d..e6901c35e 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/base-64-string/app/app.jsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/base-64-string/app/app.jsx @@ -30,7 +30,7 @@ function App() { const exportBtn = () => { let spreadsheet = spreadsheetRef.current; spreadsheet.save({ - url: 'https://services.syncfusion.com/react/production/api/spreadsheet/save', + url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', fileName: 'Worksheet', saveType: 'Xlsx', }); // Specifies the save URL, file name, file type need to be saved. @@ -41,7 +41,7 @@ function App() {
- + diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/base-64-string/app/app.tsx b/Document-Processing/code-snippet/excel/spreadsheet/react/base-64-string/app/app.tsx index 3612ac227..c8167e46d 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/base-64-string/app/app.tsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/base-64-string/app/app.tsx @@ -30,7 +30,7 @@ function App() { const exportBtn = (): void => { let spreadsheet: SpreadsheetComponent = spreadsheetRef.current; spreadsheet.save({ - url: 'https://services.syncfusion.com/react/production/api/spreadsheet/save', + url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', fileName: 'Worksheet', saveType: 'Xlsx', }); // Specifies the save URL, file name, file type need to be saved. @@ -41,7 +41,7 @@ function App() {
- + diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/change-active-sheet-cs1/app/app.jsx b/Document-Processing/code-snippet/excel/spreadsheet/react/change-active-sheet-cs1/app/app.jsx index 6d1c2f332..3b42392bf 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/change-active-sheet-cs1/app/app.jsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/change-active-sheet-cs1/app/app.jsx @@ -11,8 +11,8 @@ function App() { } return ( diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/change-active-sheet-cs1/app/app.tsx b/Document-Processing/code-snippet/excel/spreadsheet/react/change-active-sheet-cs1/app/app.tsx index ea9fca522..720f0e104 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/change-active-sheet-cs1/app/app.tsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/change-active-sheet-cs1/app/app.tsx @@ -11,8 +11,8 @@ function App() { } return ( diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/note-cs1/app/app.jsx b/Document-Processing/code-snippet/excel/spreadsheet/react/note-cs1/app/app.jsx index dc96f5c07..161877782 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/note-cs1/app/app.jsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/note-cs1/app/app.jsx @@ -15,7 +15,7 @@ function App() { return (
- + diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/note-cs1/app/app.tsx b/Document-Processing/code-snippet/excel/spreadsheet/react/note-cs1/app/app.tsx index 6a863de80..25d7e001e 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/note-cs1/app/app.tsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/note-cs1/app/app.tsx @@ -15,7 +15,7 @@ function App() { return (
- + diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/note-cs2/app/app.jsx b/Document-Processing/code-snippet/excel/spreadsheet/react/note-cs2/app/app.jsx index 50e394700..1bfecfc10 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/note-cs2/app/app.jsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/note-cs2/app/app.jsx @@ -15,7 +15,7 @@ function App() { return (
- + diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/note-cs2/app/app.tsx b/Document-Processing/code-snippet/excel/spreadsheet/react/note-cs2/app/app.tsx index 1bb7c4e92..bb4522a04 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/note-cs2/app/app.tsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/note-cs2/app/app.tsx @@ -15,7 +15,7 @@ function App() { return (
- + diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/note-cs3/app/app.jsx b/Document-Processing/code-snippet/excel/spreadsheet/react/note-cs3/app/app.jsx index a912e568f..c63a57cd7 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/note-cs3/app/app.jsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/note-cs3/app/app.jsx @@ -15,7 +15,7 @@ function App() { return (
- + diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/note-cs3/app/app.tsx b/Document-Processing/code-snippet/excel/spreadsheet/react/note-cs3/app/app.tsx index 57afdc318..795cf2a4e 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/note-cs3/app/app.tsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/note-cs3/app/app.tsx @@ -15,7 +15,7 @@ function App() { return (
- + diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/open-from-blobdata-cs1/app/app.jsx b/Document-Processing/code-snippet/excel/spreadsheet/react/open-from-blobdata-cs1/app/app.jsx index 6dd6deb4a..d46d68bc1 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/open-from-blobdata-cs1/app/app.jsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/open-from-blobdata-cs1/app/app.jsx @@ -23,7 +23,7 @@ function App() { return (
- +
); diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/open-from-blobdata-cs1/app/app.tsx b/Document-Processing/code-snippet/excel/spreadsheet/react/open-from-blobdata-cs1/app/app.tsx index 3caed09d9..9f9869050 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/open-from-blobdata-cs1/app/app.tsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/open-from-blobdata-cs1/app/app.tsx @@ -22,7 +22,7 @@ function App() { return (
- +
); diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/open-from-json/app/app.jsx b/Document-Processing/code-snippet/excel/spreadsheet/react/open-from-json/app/app.jsx index 213640c59..380cb78ba 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/open-from-json/app/app.jsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/open-from-json/app/app.jsx @@ -49,7 +49,7 @@ function App() { let valueOnlyCheckbox = document.getElementById("valueOnly").checked; let options = valueOnlyCheckbox ? { onlyValues: true } : createOptions(); fetch( - 'https://services.syncfusion.com/react/production/api/spreadsheet/open', + 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/open', args.requestData ).then((response) => { response.json().then((data) => { diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/open-from-json/app/app.tsx b/Document-Processing/code-snippet/excel/spreadsheet/react/open-from-json/app/app.tsx index 09135b997..8ceda1fc5 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/open-from-json/app/app.tsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/open-from-json/app/app.tsx @@ -49,7 +49,7 @@ function App() { let valueOnlyCheckbox: boolean = (document.getElementById("valueOnly") as HTMLInputElement).checked; let options: SerializationOptions = valueOnlyCheckbox ? { onlyValues: true } : createOptions(); fetch( - 'https://services.syncfusion.com/react/production/api/spreadsheet/open', + 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/open', args.requestData ).then((response) => { response.json().then((data) => { diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs1/app/app.jsx b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs1/app/app.jsx index 6a4842522..575e0e6fc 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs1/app/app.jsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs1/app/app.jsx @@ -5,7 +5,7 @@ import { SpreadsheetComponent } from '@syncfusion/ej2-react-spreadsheet'; function App() { const beforeOpen = () => {}; return ( - + ); }; export default App; diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs1/app/app.tsx b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs1/app/app.tsx index 9cff74d42..8ac44c925 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs1/app/app.tsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs1/app/app.tsx @@ -5,7 +5,7 @@ import { SpreadsheetComponent } from '@syncfusion/ej2-react-spreadsheet'; function App() { const beforeOpen = ():void => {}; return ( - + ); }; export default App; diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs2/app/app.jsx b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs2/app/app.jsx index 7d384f00a..284372fb1 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs2/app/app.jsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs2/app/app.jsx @@ -18,7 +18,7 @@ function App() { }, []); return ( - + ); }; export default App; diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs2/app/app.tsx b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs2/app/app.tsx index e92ab1d73..a9d3a7e5f 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs2/app/app.tsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs2/app/app.tsx @@ -18,7 +18,7 @@ function App() { }, []); return ( - + ); }; export default App; diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs3/app/app.jsx b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs3/app/app.jsx index 455dae1d0..bfb6db6bf 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs3/app/app.jsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs3/app/app.jsx @@ -11,7 +11,7 @@ function App() { }; return ( - + ); }; export default App; diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs3/app/app.tsx b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs3/app/app.tsx index 366c149a6..f5821f3bb 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs3/app/app.tsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs3/app/app.tsx @@ -11,7 +11,7 @@ function App() { }; return ( - + ); }; export default App; diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs4/app/app.jsx b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs4/app/app.jsx index 9edb383b7..9e454160c 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs4/app/app.jsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs4/app/app.jsx @@ -22,7 +22,7 @@ function App() { return ( + openUrl="https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/open" /> ); }; export default App; diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs4/app/app.tsx b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs4/app/app.tsx index 245979d7b..c8c1f3930 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs4/app/app.tsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs4/app/app.tsx @@ -22,7 +22,7 @@ function App() { return ( + openUrl="https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/open" /> ); }; export default App; diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs5/app/app.jsx b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs5/app/app.jsx index bf6b2ae45..c99a1206e 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs5/app/app.jsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs5/app/app.jsx @@ -8,7 +8,7 @@ function App() { const beforeSave = () => {}; return ( - + diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs5/app/app.tsx b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs5/app/app.tsx index 0d0e89425..96d35f7ed 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs5/app/app.tsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs5/app/app.tsx @@ -8,7 +8,7 @@ function App() { const beforeSave = (): void => {}; return ( - + diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs6/app/app.jsx b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs6/app/app.jsx index 2e675aaee..9d5d5c108 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs6/app/app.jsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs6/app/app.jsx @@ -12,7 +12,7 @@ function App() { }; return ( - + diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs6/app/app.tsx b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs6/app/app.tsx index 33e0edfc3..e89d91308 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs6/app/app.tsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs6/app/app.tsx @@ -12,7 +12,7 @@ function App() { }; return ( - + diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs7/app/app.jsx b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs7/app/app.jsx index 305a1bdb7..cf6ab5010 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs7/app/app.jsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs7/app/app.jsx @@ -18,7 +18,7 @@ function App() { formData.append('saveType', 'Xlsx'); formData.append('pdfLayoutSettings', JSON.stringify({ fitSheetOnOnePage: false, orientation: 'Portrait' })); fetch( - 'https://services.syncfusion.com/react/production/api/spreadsheet/save', + 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', { method: 'POST', headers: { Authorization: 'YOUR TEXT' }, @@ -44,7 +44,7 @@ function App() { return ( + saveUrl="https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save" > diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs7/app/app.tsx b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs7/app/app.tsx index a6eb86a90..b64c889cb 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs7/app/app.tsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs7/app/app.tsx @@ -18,7 +18,7 @@ function App() { formData.append('saveType', 'Xlsx'); formData.append('pdfLayoutSettings', JSON.stringify({ fitSheetOnOnePage: false, orientation: 'Portrait' })); fetch( - 'https://services.syncfusion.com/react/production/api/spreadsheet/save', + 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', { method: 'POST', headers: { Authorization: 'YOUR TEXT' }, @@ -44,7 +44,7 @@ function App() { return ( + saveUrl="https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save" > diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs8/app/app.jsx b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs8/app/app.jsx index a457e6498..a05a2ee43 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs8/app/app.jsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs8/app/app.jsx @@ -8,7 +8,7 @@ function App() { args.pdfLayoutSettings.orientation = 'Landscape'; // You can change the orientation of the PDF document } - return ( + return ( diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs8/app/app.tsx b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs8/app/app.tsx index f117b0341..cf2e286fc 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs8/app/app.tsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs8/app/app.tsx @@ -8,7 +8,7 @@ function App() { args.pdfLayoutSettings.orientation = 'Landscape'; // You can change the orientation of the PDF document } - return ( + return ( diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs9/app/app.jsx b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs9/app/app.jsx index f4f505684..e18ac2454 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs9/app/app.jsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs9/app/app.jsx @@ -27,7 +27,7 @@ function App() { >
); diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs9/app/app.tsx b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs9/app/app.tsx index 5e1e8bdb0..b6f1f9cfb 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs9/app/app.tsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/open-save-cs9/app/app.tsx @@ -26,7 +26,7 @@ function App() { >
); diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/print-cs2/app/app.jsx b/Document-Processing/code-snippet/excel/spreadsheet/react/print-cs2/app/app.jsx index 3c845d726..32c470123 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/print-cs2/app/app.jsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/print-cs2/app/app.jsx @@ -36,7 +36,7 @@ function App() {
- + diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/print-cs2/app/app.tsx b/Document-Processing/code-snippet/excel/spreadsheet/react/print-cs2/app/app.tsx index 6399578e6..dafb76d9c 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/print-cs2/app/app.tsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/print-cs2/app/app.tsx @@ -36,7 +36,7 @@ function App() {
- + diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/print-cs3/app/app.jsx b/Document-Processing/code-snippet/excel/spreadsheet/react/print-cs3/app/app.jsx index 752dbd77a..c32452a4e 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/print-cs3/app/app.jsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/print-cs3/app/app.jsx @@ -15,7 +15,7 @@ function App() { return (
- + diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/print-cs3/app/app.tsx b/Document-Processing/code-snippet/excel/spreadsheet/react/print-cs3/app/app.tsx index 7d6d3641f..6c7455bab 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/print-cs3/app/app.tsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/print-cs3/app/app.tsx @@ -15,7 +15,7 @@ function App() { return (
- + diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/readonly-cs1/app/app.jsx b/Document-Processing/code-snippet/excel/spreadsheet/react/readonly-cs1/app/app.jsx index 7b35e1728..4c32509a4 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/readonly-cs1/app/app.jsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/readonly-cs1/app/app.jsx @@ -28,7 +28,7 @@ function App() { - + diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/readonly-cs1/app/app.tsx b/Document-Processing/code-snippet/excel/spreadsheet/react/readonly-cs1/app/app.tsx index a73e4ef52..fa84bc0d7 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/readonly-cs1/app/app.tsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/readonly-cs1/app/app.tsx @@ -29,7 +29,7 @@ function App() { - + diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/ribbon-cs1/app/app.jsx b/Document-Processing/code-snippet/excel/spreadsheet/react/ribbon-cs1/app/app.jsx index ea8cab957..12a5c13dd 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/ribbon-cs1/app/app.jsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/ribbon-cs1/app/app.jsx @@ -102,8 +102,8 @@ function App() {
+ openUrl="https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/open" + saveUrl="https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save"> diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/ribbon-cs1/app/app.tsx b/Document-Processing/code-snippet/excel/spreadsheet/react/ribbon-cs1/app/app.tsx index f64eca6e6..3dddd796a 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/ribbon-cs1/app/app.tsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/ribbon-cs1/app/app.tsx @@ -103,8 +103,8 @@ function App() {
+ openUrl="https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/open" + saveUrl="https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save"> diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/save-as-blobdata-cs1/app/app.jsx b/Document-Processing/code-snippet/excel/spreadsheet/react/save-as-blobdata-cs1/app/app.jsx index 2bd6586d6..febed6896 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/save-as-blobdata-cs1/app/app.jsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/save-as-blobdata-cs1/app/app.jsx @@ -19,7 +19,7 @@ function App() { return (
- + diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/save-as-blobdata-cs1/app/app.tsx b/Document-Processing/code-snippet/excel/spreadsheet/react/save-as-blobdata-cs1/app/app.tsx index 08680e88f..f3d344e94 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/save-as-blobdata-cs1/app/app.tsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/save-as-blobdata-cs1/app/app.tsx @@ -19,7 +19,7 @@ function App() { return (
- + diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/save-as-json/app/app.jsx b/Document-Processing/code-snippet/excel/spreadsheet/react/save-as-json/app/app.jsx index a423f7f21..9b2eee0a8 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/save-as-json/app/app.jsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/save-as-json/app/app.jsx @@ -45,7 +45,7 @@ function App() { formData.append('saveType', 'Xlsx'); formData.append('pdfLayoutSettings', JSON.stringify({ fitSheetOnOnePage: false, orientation: 'Portrait' })), fetch( - 'https://services.syncfusion.com/react/production/api/spreadsheet/save', + 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', { method: 'POST', body: formData, @@ -83,7 +83,7 @@ function App() {
- +
); diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/save-as-json/app/app.tsx b/Document-Processing/code-snippet/excel/spreadsheet/react/save-as-json/app/app.tsx index 49a002990..bec44d633 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/save-as-json/app/app.tsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/save-as-json/app/app.tsx @@ -45,7 +45,7 @@ function App() { formData.append('saveType', 'Xlsx'); formData.append('pdfLayoutSettings', JSON.stringify({ fitSheetOnOnePage: false, orientation: 'Portrait' })), fetch( - 'https://services.syncfusion.com/react/production/api/spreadsheet/save', + 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', { method: 'POST', body: formData, @@ -83,7 +83,7 @@ function App() {
- +
); diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/save-cs1/app/app.jsx b/Document-Processing/code-snippet/excel/spreadsheet/react/save-cs1/app/app.jsx index bf8bcc947..9e67a9f2c 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/save-cs1/app/app.jsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/save-cs1/app/app.jsx @@ -17,13 +17,13 @@ function App() { let spreadsheet = spreadsheetRef.current; if (spreadsheet) { if (args.item.text === 'Save As xlsx') - spreadsheet.save({ url: 'https://services.syncfusion.com/react/production/api/spreadsheet/save', fileName: "Sample", saveType: "Xlsx" }); + spreadsheet.save({ url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', fileName: "Sample", saveType: "Xlsx" }); if (args.item.text === 'Save As xls') - spreadsheet.save({ url: 'https://services.syncfusion.com/react/production/api/spreadsheet/save', fileName: "Sample", saveType: "Xls" }); + spreadsheet.save({ url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', fileName: "Sample", saveType: "Xls" }); if (args.item.text === 'Save As csv') - spreadsheet.save({ url: 'https://services.syncfusion.com/react/production/api/spreadsheet/save', fileName: "Sample", saveType: "Csv" }); + spreadsheet.save({ url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', fileName: "Sample", saveType: "Csv" }); if (args.item.text === 'Save As pdf') - spreadsheet.save({ url: 'https://services.syncfusion.com/react/production/api/spreadsheet/save', fileName: "Sample", saveType: "Pdf" }); + spreadsheet.save({ url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', fileName: "Sample", saveType: "Pdf" }); } }; diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/save-cs1/app/app.tsx b/Document-Processing/code-snippet/excel/spreadsheet/react/save-cs1/app/app.tsx index 65362ef84..9665dee78 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/save-cs1/app/app.tsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/save-cs1/app/app.tsx @@ -17,13 +17,13 @@ function App() { let spreadsheet = spreadsheetRef.current; if (spreadsheet) { if (args.item.text === 'Save As xlsx') - spreadsheet.save({ url: 'https://services.syncfusion.com/react/production/api/spreadsheet/save', fileName: "Sample", saveType: "Xlsx" }); + spreadsheet.save({ url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', fileName: "Sample", saveType: "Xlsx" }); if (args.item.text === 'Save As xls') - spreadsheet.save({ url: 'https://services.syncfusion.com/react/production/api/spreadsheet/save', fileName: "Sample", saveType: "Xls" }); + spreadsheet.save({ url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', fileName: "Sample", saveType: "Xls" }); if (args.item.text === 'Save As csv') - spreadsheet.save({ url: 'https://services.syncfusion.com/react/production/api/spreadsheet/save', fileName: "Sample", saveType: "Csv" }); + spreadsheet.save({ url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', fileName: "Sample", saveType: "Csv" }); if (args.item.text === 'Save As pdf') - spreadsheet.save({ url: 'https://services.syncfusion.com/react/production/api/spreadsheet/save', fileName: "Sample", saveType: "Pdf" }); + spreadsheet.save({ url: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save', fileName: "Sample", saveType: "Pdf" }); } }; diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/sheet-visiblity-cs1/app/app.jsx b/Document-Processing/code-snippet/excel/spreadsheet/react/sheet-visiblity-cs1/app/app.jsx index 2de8364b8..94b1e2114 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/sheet-visiblity-cs1/app/app.jsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/sheet-visiblity-cs1/app/app.jsx @@ -19,8 +19,8 @@ function App() { }, []); return ( - + diff --git a/Document-Processing/code-snippet/excel/spreadsheet/react/sheet-visiblity-cs1/app/app.tsx b/Document-Processing/code-snippet/excel/spreadsheet/react/sheet-visiblity-cs1/app/app.tsx index 914eff73d..f5f776407 100644 --- a/Document-Processing/code-snippet/excel/spreadsheet/react/sheet-visiblity-cs1/app/app.tsx +++ b/Document-Processing/code-snippet/excel/spreadsheet/react/sheet-visiblity-cs1/app/app.tsx @@ -19,8 +19,8 @@ function App() { }, []); return ( - + From 7930750b89390fa16fb5c7f0ef2a55b622e8f0f7 Mon Sep 17 00:00:00 2001 From: DinakarSF4212 <147583019+DinakarSF4212@users.noreply.github.com> Date: Sat, 6 Sep 2025 14:24:50 +0530 Subject: [PATCH 4/9] 977949: Updated Open and Save URLs and resolved CI errors. --- .../Excel/Spreadsheet/ASP-NET-MVC/data-binding.md | 2 +- .../Excel/Spreadsheet/React/nextjs-getting-started.md | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/data-binding.md b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/data-binding.md index 7eacc59fb..1b8f99443 100644 --- a/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/data-binding.md +++ b/Document-Processing/Excel/Spreadsheet/ASP-NET-MVC/data-binding.md @@ -102,7 +102,7 @@ You can use WebApiAdaptor to bind spreadsheet with Web API created using OData e ## Cell data binding -The Spreadsheet control can bind the data to individual cell in a sheet . To achive this you can use the `value` property. +The Spreadsheet control can bind the data to individual cell in a sheet . To achieve this you can use the `value` property. Refer to the following code example for cell data binding. diff --git a/Document-Processing/Excel/Spreadsheet/React/nextjs-getting-started.md b/Document-Processing/Excel/Spreadsheet/React/nextjs-getting-started.md index 6397148cd..d96b345cd 100644 --- a/Document-Processing/Excel/Spreadsheet/React/nextjs-getting-started.md +++ b/Document-Processing/Excel/Spreadsheet/React/nextjs-getting-started.md @@ -7,8 +7,7 @@ platform: document-processing documentation: ug --- -# Creating a Next.js Application Using Syncfusion® React Components - +# Creating a Spreadsheet Application in Next.js This section provides a step-by-step guide for setting up a Next.js application and integrating the Syncfusion® React Spreadsheet component. ## What is Next.js? From 0cb9665920ccec3b908f4788b148d5ce27dc4eaa Mon Sep 17 00:00:00 2001 From: DinakarSF4212 <147583019+DinakarSF4212@users.noreply.github.com> Date: Sat, 6 Sep 2025 14:43:44 +0530 Subject: [PATCH 5/9] 977949: Updated Open and Save URLs and resolved CI errors. --- .../Excel/Spreadsheet/React/nextjs-getting-started.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Document-Processing/Excel/Spreadsheet/React/nextjs-getting-started.md b/Document-Processing/Excel/Spreadsheet/React/nextjs-getting-started.md index d96b345cd..caa412cd6 100644 --- a/Document-Processing/Excel/Spreadsheet/React/nextjs-getting-started.md +++ b/Document-Processing/Excel/Spreadsheet/React/nextjs-getting-started.md @@ -101,7 +101,7 @@ yarn add @syncfusion/ej2-react-spreadsheet ## Import Syncfusion® CSS styles -Syncfusion® React components come with [built-in themes](https://ej2.syncfusion.com/react/documentation/appearance/theme/), which are available in the installed packages. It’s easy to adapt the Syncfusion® React components to match the style of your application by referring to one of the built-in themes. +Syncfusion® React components come with [built-in themes](https://ej2.syncfusion.com/react/documentation/appearance/theme), which are available in the installed packages. It’s easy to adapt the Syncfusion® React components to match the style of your application by referring to one of the built-in themes. Import the `Material` theme into the **src/app/globals.css** file and removed the existing styles in that file, as shown below: @@ -122,7 +122,7 @@ Import the `Material` theme into the **src/app/globals.css** file and removed th {% endhighlight %} {% endtabs %} -> To know more about built-in themes and CSS reference for individual components, refer to the [themes](https://ej2.syncfusion.com/react/documentation/appearance/theme/) section. +> To know more about built-in themes and CSS reference for individual components, refer to the [themes](https://ej2.syncfusion.com/react/documentation/appearance/theme) section. ## Add Syncfusion® React component @@ -444,6 +444,4 @@ yarn run dev {% endhighlight %} {% endtabs %} -To learn more about the functionality of the Spreadsheet component, refer to the [documentation](https://help.syncfusion.com/document-processing/excel/spreadsheet/react/feature-list). - -> [View the NEXT.js Spreadsheet sample in the GitHub repository](https://github.com/SyncfusionExamples/ej2-nextjs-spreadsheet). +To learn more about the functionality of the Spreadsheet component, refer to the [documentation](https://help.syncfusion.com/document-processing/excel/spreadsheet/react/feature-list). \ No newline at end of file From b5a4fda1815e40a3620fd4f4e8d00f029263eb17 Mon Sep 17 00:00:00 2001 From: DinakarSF4212 <147583019+DinakarSF4212@users.noreply.github.com> Date: Sat, 6 Sep 2025 15:18:12 +0530 Subject: [PATCH 6/9] 977949: Updated Open and Save URLs and resolved CI errors. --- .../Spreadsheet/React/nextjs-getting-started.md | 14 +++++++------- .../Vue/performance-best-practices.md | 16 ++++++++-------- .../vue/base-64-string/app-composition.vue | 4 ++-- .../excel/spreadsheet/vue/base-64-string/app.vue | 4 ++-- .../spreadsheet/vue/base-64-string/index.js | 4 ++-- .../change-active-sheet-cs1/app-composition.vue | 4 ++-- .../vue/change-active-sheet-cs1/app.vue | 4 ++-- .../vue/change-active-sheet-cs1/index.js | 4 ++-- .../vue/custom-header-cs1/app-composition.vue | 2 +- .../spreadsheet/vue/custom-header-cs1/app.vue | 2 +- .../spreadsheet/vue/custom-header-cs1/index.js | 2 +- .../vue/custom-header-cs2/app-composition.vue | 4 ++-- .../spreadsheet/vue/custom-header-cs2/app.vue | 4 ++-- .../spreadsheet/vue/custom-header-cs2/index.js | 4 ++-- .../spreadsheet/vue/note-cs1/app-composition.vue | 4 ++-- .../excel/spreadsheet/vue/note-cs1/app.vue | 4 ++-- .../excel/spreadsheet/vue/note-cs1/index.js | 4 ++-- .../spreadsheet/vue/note-cs2/app-composition.vue | 4 ++-- .../excel/spreadsheet/vue/note-cs2/app.vue | 4 ++-- .../excel/spreadsheet/vue/note-cs2/index.js | 4 ++-- .../spreadsheet/vue/note-cs3/app-composition.vue | 4 ++-- .../excel/spreadsheet/vue/note-cs3/app.vue | 4 ++-- .../excel/spreadsheet/vue/note-cs3/index.js | 4 ++-- .../spreadsheet/vue/open-cs1/app-composition.vue | 2 +- .../excel/spreadsheet/vue/open-cs1/app.vue | 2 +- .../excel/spreadsheet/vue/open-cs1/index.js | 2 +- .../spreadsheet/vue/open-cs2/app-composition.vue | 2 +- .../excel/spreadsheet/vue/open-cs2/app.vue | 2 +- .../excel/spreadsheet/vue/open-cs2/index.js | 2 +- .../open-from-blobdata-cs1/app-composition.vue | 4 ++-- .../vue/open-from-blobdata-cs1/app.vue | 4 ++-- .../vue/open-from-blobdata-cs1/index.js | 4 ++-- .../vue/open-from-json/app-composition.vue | 2 +- .../excel/spreadsheet/vue/open-from-json/app.vue | 2 +- .../spreadsheet/vue/open-from-json/index.js | 2 +- .../vue/open-readonly-cs1/app-composition.vue | 2 +- .../spreadsheet/vue/open-readonly-cs1/app.vue | 2 +- .../spreadsheet/vue/open-readonly-cs1/index.js | 2 +- .../vue/open-save-cs1/app-composition.vue | 2 +- .../excel/spreadsheet/vue/open-save-cs1/app.vue | 2 +- .../excel/spreadsheet/vue/open-save-cs1/index.js | 2 +- .../vue/open-save-cs2/app-composition.vue | 2 +- .../excel/spreadsheet/vue/open-save-cs2/app.vue | 2 +- .../excel/spreadsheet/vue/open-save-cs2/index.js | 2 +- .../vue/open-save-cs3/app-composition.vue | 2 +- .../excel/spreadsheet/vue/open-save-cs3/app.vue | 2 +- .../excel/spreadsheet/vue/open-save-cs3/index.js | 2 +- .../vue/open-uploader-cs1/app-composition.vue | 2 +- .../spreadsheet/vue/open-uploader-cs1/app.vue | 2 +- .../spreadsheet/vue/open-uploader-cs1/index.js | 2 +- .../vue/print-cs2/app-composition.vue | 4 ++-- .../excel/spreadsheet/vue/print-cs2/app.vue | 4 ++-- .../excel/spreadsheet/vue/print-cs2/index.js | 4 ++-- .../vue/print-cs3/app-composition.vue | 4 ++-- .../excel/spreadsheet/vue/print-cs3/app.vue | 4 ++-- .../excel/spreadsheet/vue/print-cs3/index.js | 4 ++-- .../vue/ribbon-cs1/app-composition.vue | 4 ++-- .../excel/spreadsheet/vue/ribbon-cs1/app.vue | 4 ++-- .../excel/spreadsheet/vue/ribbon-cs1/index.js | 4 ++-- .../vue/save-as-blobdata-cs1/app-composition.vue | 4 ++-- .../spreadsheet/vue/save-as-blobdata-cs1/app.vue | 4 ++-- .../vue/save-as-blobdata-cs1/index.js | 4 ++-- .../vue/save-as-json/app-composition.vue | 4 ++-- .../excel/spreadsheet/vue/save-as-json/app.vue | 4 ++-- .../excel/spreadsheet/vue/save-as-json/index.js | 4 ++-- .../spreadsheet/vue/save-cs1/app-composition.vue | 8 ++++---- .../excel/spreadsheet/vue/save-cs1/app.vue | 8 ++++---- .../excel/spreadsheet/vue/save-cs1/index.js | 8 ++++---- .../vue/sheet-visiblity-cs1/app-composition.vue | 4 ++-- .../spreadsheet/vue/sheet-visiblity-cs1/app.vue | 4 ++-- .../spreadsheet/vue/sheet-visiblity-cs1/index.js | 4 ++-- 71 files changed, 132 insertions(+), 132 deletions(-) diff --git a/Document-Processing/Excel/Spreadsheet/React/nextjs-getting-started.md b/Document-Processing/Excel/Spreadsheet/React/nextjs-getting-started.md index caa412cd6..855a72926 100644 --- a/Document-Processing/Excel/Spreadsheet/React/nextjs-getting-started.md +++ b/Document-Processing/Excel/Spreadsheet/React/nextjs-getting-started.md @@ -41,12 +41,12 @@ yarn create next-app Using one of the above commands will lead you to set up additional configurations for the project as below: -1.Define the project name: Users can specify the name of the project directly. Let's specify the name of the project as `ej2-nextjs-spreadsheet`. +1.Define the project name: Users can specify the name of the project directly. Let's specify the name of the project as `ej2-next-js-spreadsheet`. {% tabs %} {% highlight bash tabtitle="CMD" %} -√ What is your project named? » ej2-nextjs-spreadsheet +√ What is your project named? » ej2-next-js-spreadsheet {% endhighlight %} {% endtabs %} @@ -56,24 +56,24 @@ Using one of the above commands will lead you to set up additional configuration {% tabs %} {% highlight bash tabtitle="CMD" %} -√ What is your project named? ... ej2-nextjs-spreadsheet +√ What is your project named? ... ej2-next-js-spreadsheet √ Would you like to use TypeScript? ... No / `Yes` √ Would you like to use ESLint? ... No / `Yes` √ Would you like to use Tailwind CSS? ... `No` / Yes √ Would you like to use `src/` directory? ... No / `Yes` √ Would you like to use App Router? (recommended) ... No / `Yes` √ Would you like to customize the default import alias? ... `No`/ Yes -Creating a new Next.js app in D:\ej2-nextjs-spreadsheet. +Creating a new Next.js app in D:\ej2-next-js-spreadsheet. {% endhighlight %} {% endtabs %} -3.Once complete the above mentioned steps to create `ej2-nextjs-spreadsheet`, navigate to the directory using the below command: +3.Once complete the above mentioned steps to create `ej2-next-js-spreadsheet`, navigate to the directory using the below command: {% tabs %} {% highlight bash tabtitle="CMD" %} -cd ej2-nextjs-spreadsheet +cd ej2-next-js-spreadsheet {% endhighlight %} {% endtabs %} @@ -82,7 +82,7 @@ The application is ready to run with default settings. Now, let's add Syncfusion ## Install Syncfusion® React packages -Syncfusion® React component packages are available at [npmjs.com](https://www.npmjs.com/search?q=ej2-react). To use Syncfusion® React components in the project, install the corresponding npm package. +Syncfusion® React component packages are available at [npm js](https://www.npmjs.com/search?q=ej2-react). To use Syncfusion® React components in the project, install the corresponding npm package. Here, the [React Spreadsheet component](https://www.syncfusion.com/spreadsheet-editor-sdk/react-spreadsheet-editor) is used in the project. To install the React Spreadsheet component, use the following command: diff --git a/Document-Processing/Excel/Spreadsheet/Vue/performance-best-practices.md b/Document-Processing/Excel/Spreadsheet/Vue/performance-best-practices.md index 1fd61b28d..dc147d612 100644 --- a/Document-Processing/Excel/Spreadsheet/Vue/performance-best-practices.md +++ b/Document-Processing/Excel/Spreadsheet/Vue/performance-best-practices.md @@ -123,8 +123,8 @@ import { ref } from "vue"; import { SpreadsheetComponent as EjsSpreadsheet } from "@syncfusion/ej2-vue-spreadsheet"; const spreadsheet = ref(null); -const openUrl = 'https://services.syncfusion.com/vue/production/api/spreadsheet/open'; -const saveUrl = 'https://services.syncfusion.com/vue/production/api/spreadsheet/save'; +const openUrl = 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/open'; +const saveUrl = 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save'; const beforeSave = function (args) { args.isFullPost = false; } @@ -162,8 +162,8 @@ export default { }, data: () => { return { - openUrl: 'https://services.syncfusion.com/vue/production/api/spreadsheet/open', - saveUrl: 'https://services.syncfusion.com/vue/production/api/spreadsheet/save' + openUrl: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/open', + saveUrl: 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save' } }, methods: { @@ -235,8 +235,8 @@ import { ref } from "vue"; import { SpreadsheetComponent as EjsSpreadsheet } from "@syncfusion/ej2-vue-spreadsheet"; const spreadsheet = ref(null); -const openUrl = 'https://services.syncfusion.com/vue/production/api/spreadsheet/open'; -const saveUrl = 'https://services.syncfusion.com/vue/production/api/spreadsheet/save'; +const openUrl = 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/open'; +const saveUrl = 'https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save';