Skip to content

Commit 221e648

Browse files
996221: Addressed review comments.
1 parent 946e33d commit 221e648

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

Document-Processing/Excel/Spreadsheet/Javascript-ES6/comment.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,19 +82,19 @@ You can also use the `isResolved` property in the comment model when initializin
8282
## Deleting a comment or reply
8383
You can delete either a specific reply or an entire comment thread (including all replies) using the following options:
8484

85-
### Delete a reply
86-
In the comment container, hover over the reply and click the **⋯ (More actions)** menu then select **Delete Comment**.
87-
88-
![Deleting a comment reply in Spreadsheet](./images/spreadsheet_delete-reply_comment.png)
89-
9085
### Deleting a comment thread
9186
* **Context menu**: Right-click the cell that contains the comment and select **Comment > Delete Comment**.
9287
* **Ribbon**: Use **Review > Comment > Delete Comment** on a cell that contains the comment.
9388
* **Comment container**: In the comment container, click the **⋯ (More thread actions)** menu in the header and select **Delete Thread** for an active comment or use the **Delete Thread** button in container header for a resolved comment.
9489

90+
![Deleting a comment thread in Spreadsheet](./images/spreadsheet_delete_comment.png)
91+
9592
Deleting a thread removes the comment and all its replies from the cell.
9693

97-
![Deleting a comment thread in Spreadsheet](./images/spreadsheet_delete_comment.png)
94+
### Delete a reply
95+
In the comment container, hover over the reply and click the **⋯ (More actions)** menu then select **Delete Comment**.
96+
97+
![Deleting a comment reply in Spreadsheet](./images/spreadsheet_delete-reply_comment.png)
9898

9999
## Next and Previous Comment
100100

Document-Processing/code-snippet/spreadsheet/javascript-es6/comemnt-cs1/datasource.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ export let shipmentData: Object[] = [
1313
{ 'Order ID': 10256, 'Customer Name': 'Paula Parente', 'Address': 'Rua do Mercado, 12', 'Country': 'Brazil', 'Status': 'Shipped' },
1414
{ 'Order ID': 10257, 'Customer Name': 'Michael Holz', 'Address': 'Carrera 22 con Ave.', 'Country': 'Venezuela', 'Status': 'Delivered' },
1515
{ 'Order ID': 10258, 'Customer Name': 'Roland Mendel', 'Address': 'Kirchgasse 6', 'Country': 'Austria', 'Status': 'Cancelled' }
16-
];
16+
];

Document-Processing/code-snippet/spreadsheet/javascript-es6/comemnt-cs1/index.html

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
<meta name="author" content="Syncfusion" />
1010
<link rel="shortcut icon" href="resources/favicon.ico" />
1111
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
12-
<link href="https://cdn.syncfusion.com/ej2/32.1.1/ej2-base/styles/material.css" rel="stylesheet" />
13-
<link href="https://cdn.syncfusion.com/ej2/32.1.1/ej2-inputs/styles/material.css" rel="stylesheet" />
14-
<link href="https://cdn.syncfusion.com/ej2/32.1.1/ej2-buttons/styles/material.css" rel="stylesheet" />
15-
<link href="https://cdn.syncfusion.com/ej2/32.1.1/ej2-splitbuttons/styles/material.css" rel="stylesheet" />
16-
<link href="https://cdn.syncfusion.com/ej2/32.1.1/ej2-lists/styles/material.css" rel="stylesheet" />
17-
<link href="https://cdn.syncfusion.com/ej2/32.1.1/ej2-navigations/styles/material.css" rel="stylesheet" />
18-
<link href="https://cdn.syncfusion.com/ej2/32.1.1/ej2-popups/styles/material.css" rel="stylesheet" />
19-
<link href="https://cdn.syncfusion.com/ej2/32.1.1/ej2-dropdowns/styles/material.css" rel="stylesheet" />
20-
<link href="https://cdn.syncfusion.com/ej2/32.1.1/ej2-grids/styles/material.css" rel="stylesheet" />
21-
<link href="https://cdn.syncfusion.com/ej2/32.1.1/ej2-spreadsheet/styles/material.css" rel="stylesheet" />
12+
<link href="https://cdn.syncfusion.com/ej2/32.1.19/ej2-base/styles/material.css" rel="stylesheet" />
13+
<link href="https://cdn.syncfusion.com/ej2/32.1.19/ej2-inputs/styles/material.css" rel="stylesheet" />
14+
<link href="https://cdn.syncfusion.com/ej2/32.1.19/ej2-buttons/styles/material.css" rel="stylesheet" />
15+
<link href="https://cdn.syncfusion.com/ej2/32.1.19/ej2-splitbuttons/styles/material.css" rel="stylesheet" />
16+
<link href="https://cdn.syncfusion.com/ej2/32.1.19/ej2-lists/styles/material.css" rel="stylesheet" />
17+
<link href="https://cdn.syncfusion.com/ej2/32.1.19/ej2-navigations/styles/material.css" rel="stylesheet" />
18+
<link href="https://cdn.syncfusion.com/ej2/32.1.19/ej2-popups/styles/material.css" rel="stylesheet" />
19+
<link href="https://cdn.syncfusion.com/ej2/32.1.19/ej2-dropdowns/styles/material.css" rel="stylesheet" />
20+
<link href="https://cdn.syncfusion.com/ej2/32.1.19/ej2-grids/styles/material.css" rel="stylesheet" />
21+
<link href="https://cdn.syncfusion.com/ej2/32.1.19/ej2-spreadsheet/styles/material.css" rel="stylesheet" />
2222
<link href="styles.css" rel="stylesheet" />
2323
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.38/system.js"></script>
2424
<script src="https://cdnjs.cloudflare.com/ajax/libs/core-js/2.4.1/shim.min.js"></script>

Document-Processing/code-snippet/spreadsheet/javascript-es6/comemnt-cs1/system.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ System.config({
1010
}
1111
},
1212
paths: {
13-
"syncfusion:": "https://cdn.syncfusion.com/ej2/32.1.1/"
13+
"syncfusion:": "https://cdn.syncfusion.com/ej2/32.1.19/"
1414
},
1515
map: {
1616
main: "index.ts",

0 commit comments

Comments
 (0)