Skip to content

Commit c2d3126

Browse files
committed
895411: Addressed review comments.
1 parent 787ea31 commit c2d3126

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

ej2-asp-core-mvc/spreadsheet/open-save.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -247,11 +247,11 @@ The following code example shows how to open the spreadsheet data as base64 stri
247247
{% endtabs %}
248248
{% endif %}
249249

250-
### To Open an Excel File from Blob Data
250+
### To open an excel file from blob data
251251

252-
By default, the Spreadsheet component provides an option to browse files from the local file system and open them within the component. If you want to open an Excel file from `Blob data`, you need to fetch the `Blob data` from the server or another source and convert this `Blob data` into a `File` object. Then, you can use the `open` method in the Spreadsheet component to load that File object.
252+
By default, the Spreadsheet control provides an option to browse files from the local file system and open them within the control. If you want to open an Excel file from blob data, you need to fetch the blob data from the server or another source and convert this blob data into a `File` object. Then, you can use the `open` method in the Spreadsheet control to load that `File` object.
253253

254-
Please find the code to fetch the Blob data and load it into the Spreadsheet component below.
254+
Please find the code to fetch the blob data and load it into the Spreadsheet control below.
255255

256256
### External workbook confirmation dialog
257257

@@ -498,11 +498,11 @@ The following code example shows how to save the spreadsheet data as base64 stri
498498
{% endtabs %}
499499
{% endif %}
500500

501-
### To Save an Excel File as Blob Data
501+
### To save an excel file as blob data
502502

503-
By default, the spreadsheet saves the Excel file and downloads it to the local file system. If you want to save an Excel file as `Blob data`, you need to set `needBlobData` to **true** and `isFullPost` to **false** in the [beforeSave](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_BeforeSave) event. You will then receive the spreadsheet data as a Blob in the [saveComplete](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_SaveComplete) event of the Spreadsheet component. You can post the `Blob data` to the server endpoint for saving.
503+
By default, the Spreadsheet control saves the Excel file and downloads it to the local file system. If you want to save an Excel file as blob data, you need to set `needBlobData` property to **true** and `isFullPost` property to **false** in the `beforeSave` event of the spreadsheet. Subsequently, you will receive the spreadsheet data as a blob in the `saveComplete` event. You can then post the blob data to the server endpoint for saving.
504504

505-
Please find the code to get the Blob data from the Spreadsheet component below.
505+
Please find below the code to retrieve blob data from the Spreadsheet control below.
506506

507507
### Supported file formats
508508

0 commit comments

Comments
 (0)