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
Copy file name to clipboardExpand all lines: ej2-asp-core-mvc/spreadsheet/open-save.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -247,11 +247,11 @@ The following code example shows how to open the spreadsheet data as base64 stri
247
247
{% endtabs %}
248
248
{% endif %}
249
249
250
-
### To Open an Excel File from Blob Data
250
+
### To open an excel file from blob data
251
251
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.
253
253
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.
255
255
256
256
### External workbook confirmation dialog
257
257
@@ -498,11 +498,11 @@ The following code example shows how to save the spreadsheet data as base64 stri
498
498
{% endtabs %}
499
499
{% endif %}
500
500
501
-
### To Save an Excel File as Blob Data
501
+
### To save an excel file as blob data
502
502
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.
504
504
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.
0 commit comments