Skip to content

Commit d25310b

Browse files
committed
1014442: modified content and samples in open/save json for how to session
1 parent 0c656ef commit d25310b

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

Document-Processing-toc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5444,7 +5444,7 @@
54445444
<li><a href="/document-processing/excel/spreadsheet/react/how-to/add-dynamic-cell-template">Add dynamic cell templates</a></li>
54455445
<li><a href="/document-processing/excel/spreadsheet/react/how-to/add-cell-icon">Add an icon to the cell</a></li>
54465446
<li><a href="/document-processing/excel/spreadsheet/react/how-to/get-filtered-data">Get the filtered row data</a></li>
5447-
<li><a href="/document-processing/excel/spreadsheet/react/how-to/paste-values-without-formatting">paste values without formatting and styles</a></li>
5447+
<li><a href="/document-processing/excel/spreadsheet/react/how-to/paste-only-values-without-formatting">paste only values without formatting and styles</a></li>
54485448
</ul>
54495449
</li>
54505450
<li><a href="/document-processing/excel/spreadsheet/react/mobile-responsiveness">Mobile Responsiveness</a></li>

Document-Processing/Excel/Spreadsheet/React/how-to/paste-values-without-formatting.md renamed to Document-Processing/Excel/Spreadsheet/React/how-to/paste-only-values-without-formatting.md

File renamed without changes.

Document-Processing/Excel/Spreadsheet/React/open-excel-files.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,13 +162,13 @@ Please find the code to fetch the blob data and load it into the Spreadsheet com
162162
163163
### Load Workbook as JSON
164164
165-
The Spreadsheet component allows you to load an entire workbook by using a JSON object. This JSON is usually created on the server after converting an Excel file, but it can also be generated manually. The method reads the JSON and restores all sheets, cells, styles, formulas, formatting, and other workbook details inside the component.
165+
The Spreadsheet component allows you to load an entire workbook using a JSON object. This JSON is typically generated by the Spreadsheet server by converting an Excel file into a Spreadsheet‑compatible workbook JSON, but it can also be created manually. When loaded, the component reads the JSON and restores all workbook details, including sheets, cells, styles, formulas, formatting, and other associated metadata.
166166
167-
You can also pass optional deserialization options to the [openFromJson](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/index-default#openfromjson) method to ignore certain features when loading the JSON (for example, styles, formulas, number formats, images, or conditional formats). These deserialization options are optional; if omitted, the method restores the workbook's full details by default.
167+
You can optionally pass deserialization options to the [openFromJson](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/index-default#openfromjson) method to ignore specific features when loading the JSON. For example, you can exclude styles, formulas, number formats, images, or conditional formatting. These options are optionalif you do not specify them, the method restores the full workbook details by default.
168168
169169
Reference: Guide to Creating the JSON Structure: https://help.syncfusion.com/document-processing/excel/spreadsheet/react/how-to/create-a-object-structure.
170170
171-
The following code example shows how to load workbook as JSON into the Spreadsheet component.
171+
The following example demonstrates how to load a workbook JSON into the Spreadsheet component.
172172
173173
{% tabs %}
174174
{% highlight js tabtitle="app.jsx" %}

Document-Processing/Excel/Spreadsheet/React/save-excel-files.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,11 +136,11 @@ Please find below the code to retrieve blob data from the Spreadsheet control be
136136
137137
### Save Workbook as JSON
138138
139-
The Spreadsheet component allows you to save an entire workbook as a JSON object. This JSON typically contains workbook details such as sheets, cell values, formulas, styles, and formatting.
139+
Our Spreadsheet component allows you to export an entire workbook as a JSON object. This JSON output includes all workbook details such as sheets, cell values, formulas, styles, and formatting.
140140
141-
You can optionally pass serialization options to the [saveAsJson](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/index-default#saveasjson) method to ignore certain features when exporting the workbook as JSON — for example, styles, formulas, number formats, images, or conditional formats. These serialization options are optional; if omitted, the method restores the workbook's full details by default.
141+
You can optionally pass serialization options to the [saveAsJson](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/index-default#saveasjson) method to exclude specific features from the exported JSON. For example, you can choose to ignore styles, formulas, number formats, images, or conditional formatting. These options are fully optional—if they are not provided, the method exports the workbook with all details preserved by default.
142142
143-
The following code example shows how to save workbook as JSON data from the Spreadsheet component.
143+
The following example demonstrates how to save a workbook as JSON from the Spreadsheet component.
144144
145145
{% tabs %}
146146
{% highlight js tabtitle="app.jsx" %}

0 commit comments

Comments
 (0)