From c4ea49ca22a60872a5d6fa6297cff7e14f6759d0 Mon Sep 17 00:00:00 2001 From: DinakarSF4212 <147583019+DinakarSF4212@users.noreply.github.com> Date: Mon, 23 Feb 2026 14:39:10 +0530 Subject: [PATCH 1/2] 1011162: Addressed review comments and resolved documentation staging link failures. --- .../React/Save-Excel-File/to-aws-s3-bucket.md | 6 ++---- .../Save-Excel-File/to-azure-blob-storage.md | 8 ++++---- .../spreadsheet-server-docker-image-overview.md | 2 +- .../Excel/Spreadsheet/React/open-excel-files.md | 15 +++++++++++++-- .../Excel/Spreadsheet/React/save-excel-files.md | 15 +++++++++++++-- 5 files changed, 33 insertions(+), 13 deletions(-) diff --git a/Document-Processing/Excel/Spreadsheet/React/Save-Excel-File/to-aws-s3-bucket.md b/Document-Processing/Excel/Spreadsheet/React/Save-Excel-File/to-aws-s3-bucket.md index 322e74c37..1cae9284b 100644 --- a/Document-Processing/Excel/Spreadsheet/React/Save-Excel-File/to-aws-s3-bucket.md +++ b/Document-Processing/Excel/Spreadsheet/React/Save-Excel-File/to-aws-s3-bucket.md @@ -9,7 +9,7 @@ documentation: ug # Save spreadsheet to AWS S3 -To save a file to the AWS S3, you can follow the steps below +To save a file to the AWS S3, you can follow the steps below. **Step 1:** Create a Simple Spreadsheet Sample in React @@ -118,8 +118,7 @@ N> Replace **Your Access Key from AWS S3**, **Your Secret Key from AWS S3**, and **Step 3:** Modify the index File in the Spreadsheet sample to using [`saveAsJson`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/index-default#saveasjson) method to serialize the spreadsheet and send it to the back-end -```tsx - +```js // Function to save the current spreadsheet to AWS S3 via an API call const saveToS3 = () => { // Convert the current spreadsheet to JSON format @@ -155,7 +154,6 @@ const saveToS3 = () => { }); }); }; - ``` N> The **AWSSDK.S3** NuGet package must be installed in your application to use the previous code example. diff --git a/Document-Processing/Excel/Spreadsheet/React/Save-Excel-File/to-azure-blob-storage.md b/Document-Processing/Excel/Spreadsheet/React/Save-Excel-File/to-azure-blob-storage.md index 206d4d26b..f27c3bfc7 100644 --- a/Document-Processing/Excel/Spreadsheet/React/Save-Excel-File/to-azure-blob-storage.md +++ b/Document-Processing/Excel/Spreadsheet/React/Save-Excel-File/to-azure-blob-storage.md @@ -23,7 +23,7 @@ Start by following the steps provided in this [link](https://help.syncfusion.com 3. Import the required namespaces at the top of the file: -```Csharp +```csharp using System; using System.IO; @@ -37,7 +37,7 @@ using Azure.Storage.Blobs; 4. Add the following private fields and constructor parameters to the `SpreadsheetController` class, In the constructor, assign the values from the configuration to the corresponding fields. -```Csharp +```csharp private readonly string _storageConnectionString; private readonly string _storageContainerName; @@ -52,7 +52,7 @@ public SpreadsheetController(IConfiguration configuration) 5. Create the `SaveToAzure()` method to save the document to the Azure Blob storage. -```Csharp +```csharp [HttpPost] [Route("SaveToAzure")] @@ -92,7 +92,7 @@ N> Note: Install the Azure.Storage.Blobs NuGet package in the service project. E **Step 3:** Modify the index File in the Spreadsheet sample to using [`saveAsJson`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/index-default#saveasjson) method to serialize the spreadsheet and send it to the back-end -```typescript +```js