Skip to content

Commit

Permalink
Updated documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Jekel committed Oct 19, 2013
1 parent 42fa107 commit 3d37135
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,31 @@
# cbtree 0.9.3-3 (Oct 2013)
# cbtree 0.9.3-4 (Nov 2013)
### Enhancements:
* The template driven HTML elements with class **_dijitTreeRow_** will now have an additional
**_branch_** attribute making it easy to distinguish between tree branches and tree leafs.
The branch attribute value is either "true" or "false"
```html
<div class="dijitTreeRow" branch="true" role="presentation" ... >
```
As a result you can now use css selectors like:
```html
<style type="text/css">
.dijitTreeRow[branch="true"] .dijitTreeLabel {
background-color: yellow;
}
.dijitTreeRow[branch="false"] .dijitTreeIcon {
border-style: solid;
border-width: 2px;
}
</style>
```

### New Features:
None

### Bug Fixes:
None

# cbtree 0.9.3-3
### New Features:
* A new property, **_branchCheckBox_**, has been added to the tree. The **_branchCheckBox_**
property controls if checkboxes will be displayed for tree branches. The default is `true`.
Expand Down

0 comments on commit 3d37135

Please sign in to comment.