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: docs/api/javascript/spreadsheet/range.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -461,13 +461,13 @@ Gets or sets the html rendering of the cells in the range.
461
461
##### value `Boolean`*optional*
462
462
463
463
True to make the cell render the value as HTML.
464
-
An important thing in this case is to sanitized the value of the cell on the server for passing save html because there is no client-side sanitizing.
464
+
It is important to sanitize the value of the cell on the server for passing safe html because there is no client-side sanitizing. When editing a cell the new value can be checked and prevented in the client `changing` event.
465
465
466
-
> When the value is 'true ' the value of the cell should be always sanitized on the server for passing save html.
466
+
> When the value is 'true ' the value of the cell should be always sanitized on the server for passing safe html.
467
467
468
468
#### Returns
469
469
470
-
`Boolean` the current disabled state of the top-left cell of the range.
470
+
`Boolean` the current html state of the top-left cell of the range.
471
471
472
472
#### Example
473
473
@@ -477,8 +477,8 @@ An important thing in this case is to sanitized the value of the cell on the ser
477
477
$("#spreadsheet").kendoSpreadsheet();
478
478
var spreadsheet = $("#spreadsheet").data("kendoSpreadsheet");
Copy file name to clipboardExpand all lines: docs/api/javascript/ui/spreadsheet.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -995,7 +995,7 @@ The cell formula without the leading equals sign, for example, `A1 * 10`.
995
995
### sheets.rows.cells.html `Boolean`
996
996
997
997
If set to `true`, renders the cell value as HTML.
998
-
An important thing in this case is to sanitized the value of the cell on the server for passing save html because there is no client-side sanitizing.
998
+
It is important to sanitize the value of the cell on the server for passing safe html because there is no client-side sanitizing. When editing a cell the new value can be checked and prevented in the client `changing` event.
0 commit comments