Skip to content

Commit 8ff67fe

Browse files
committed
1012637: updated How to session for react spreadsheet in ug documentation
1 parent 1f346e7 commit 8ff67fe

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Document-Processing/Excel/Spreadsheet/React/how-to/add-dynamic-cell-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation: ug
99

1010
# Create Dynamic Cell Templates with Dropdowns in React Spreadsheet
1111

12-
You can add templates to cells in the Syncfusion Spreadsheet component by dynamically assigning a custom template property directly to individual cells. When a cell has this custom template property, you can use the [beforeCellRender](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/index-default#beforecellrender) event to append the desired template element to the cell. You can initialize programmatically in the [created](https://ej2.syncfusion.com/documentation/api/spreadsheet/index-default#created) event to apply templates to cells.
12+
You can add templates to cells in the Syncfusion Spreadsheet component by dynamically assigning a custom template property directly to individual cells. When a cell has this custom template property, you can use the [beforeCellRender](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/index-default#beforecellrender) event to append the desired template element to the cell.
1313

1414
The following sample demonstrates how to insert a [Syncfusion Dropdown component](https://www.npmjs.com/package/@syncfusion/ej2-dropdowns) into Spreadsheet cells using this custom template property. Additionally, a custom ribbon item named "DropDown List" is included under a new "Template" ribbon tab. When this ribbon item is selected, the Spreadsheet dynamically inserts a dropdown into the currently active cell.
1515

Document-Processing/Excel/Spreadsheet/React/how-to/find-replace-in-range.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ documentation: ug
99

1010
# Find and replace the text within the selected range of cells
1111

12-
In Syncfusion Spreadsheet, the "Replace all" action normally searches the entire sheet and does not consider the user's selected range. The sample below shows how you can prevent the Replace all operation to entire sheet, so it updates only the cells inside the selected range.
12+
In Syncfusion Spreadsheet, the "Replace All" action by default searches and replaces text athroughout the entire sheet, regardless of the selected range. To limit "Replace All" to only the selected range, you can customize the addressCollection based on the selectedRange in the [actionBegin](https://ej2.syncfusion.com/documentation/api/spreadsheet/index-default#actionbegin) event when the action is beforeReplaceAll.
1313

14-
The selected range is captured during the [actionBegin](https://ej2.syncfusion.com/documentation/api/spreadsheet/index-default#actionbegin) event. This range is then expanded into individual cell addresses. The cell value is replaced only if it falls within this selected range.
14+
The following sample demonstrates how to limit the "Replace All" operation to the currently selected range.
1515

1616
{% tabs %}
1717
{% highlight js tabtitle="app.jsx" %}

0 commit comments

Comments
 (0)