Skip to content

Commit 885d04d

Browse files
committed
Copy edits on Improving Lightweight Rendering for RadTreeView article
1 parent 8c949b9 commit 885d04d

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

controls/treeview/changes-and-backwards-compatibility/lightweight-rm-improvements-r3-2016.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ position: 0
1414

1515
The **R3 2016** release of the **Telerik UI for ASP.NET AJAX** suite introduces several improvements of the **Lightweight** rendering of the **RadTreeView**. As the **RadDropDownTree** uses an embedded **RadTreeView** for its drop-down, those changes apply for that control too.
1616

17-
The improvements introduced might cause some issues with the proper appearance of the control, when custom styles are applied. The changes introduced for the structure of the nodes of the tree are listed below:
17+
The improvements introduced might cause some issues with the proper appearance of the control when custom styles are applied. The changes introduced for the structure of the nodes of the tree are listed below:
1818

19-
* The *<div>* element that represents each node used to have *rtTop*, *rtMid* or *rtBot* class, depending on the position of the node (whether it is the first node for the current level, a middle node of the last node). In the improved rendering those classes are substituted with a single *rtOut* class;
19+
* The *<div>* element that represents each node used to have the *rtTop*, *rtMid* or *rtBot* class, depending on the position of the node (whether it is the first node for the current level, a middle node or the last node). In the improved rendering those classes are substituted with a single *rtOut* class.
2020

21-
* The *<span>* element with class *rtSp*, that was used to calculate the line height for each node, has been removed;
21+
* The *<span>* element with the class *rtSp*, which was used to calculate the line height for each node, has been removed.
2222

23-
* The *<span>* element with class *rtIn* has been transformed to a *<div>* element;
23+
* The *<span>* element with the class *rtIn* has been transformed to a *<div>* element.
2424

25-
* The icon *<img>* with class *rtImg* used to be sibling, placed before the *rtIn* element, but it is now placed within the *rtIn* *<div>*;
25+
* The icon *<img>* with the class *rtImg* used to be sibling, placed before the *rtIn* element, but it is now placed within the *rtIn* *<div>*.
2626

27-
* A new *<span>* element with class *rtText* has been introduced to hold the text of each node;
27+
* A new *<span>* element with the class *rtText* has been introduced to hold the text of each node.
2828

29-
* The class *rtChkTristate* has been added to the tri-state checkbox *<span>*;
29+
* The class *rtChkTristate* has been added to the tri-state checkbox *<span>*.
3030

3131

3232

@@ -35,7 +35,7 @@ The improvements introduced might cause some issues with the proper appearance o
3535

3636
### Using the Tag Selector
3737

38-
In case that *rtIn* element is customized using tag selector (*span.rtIn*), removing the element text (*span*) from the selector will fix the possible issues.
38+
In cases where that *rtIn* element is customized using the tag selector (*span.rtIn*), removing the element text (*span*) from the selector will fix the possible issues.
3939

4040

4141
### Styling rtOut Element
@@ -64,7 +64,7 @@ to:
6464

6565
## Changes in the HTML Structure of a Node with a Two-state Checkbox
6666

67-
Previously the generated structure of a tree node with a two-state checkbox was:
67+
Previously, the generated structure of a tree node with a two-state checkbox was:
6868

6969
````HTML
7070
<div class="rtTop ContentCssClass rtSelected SelectedCssClass">
@@ -95,7 +95,7 @@ It has been changed to:
9595

9696
## Changes in the HTML Structure of a Node with a tri-state Checkbox
9797

98-
The node with s tri-state checkbox has been changed from:
98+
The node with a tri-state checkbox has been changed from:
9999
````HTML
100100
<div class="rtTop ContentCssClass rtSelected SelectedCssClass">
101101
<span class="rtSp"></span>

0 commit comments

Comments
 (0)