diff options
Diffstat (limited to 'js/components/ui/tree-basic/tree.reel')
-rwxr-xr-x[-rw-r--r--] | js/components/ui/tree-basic/tree.reel/tree.css | 0 | ||||
-rwxr-xr-x[-rw-r--r--] | js/components/ui/tree-basic/tree.reel/tree.html | 10 | ||||
-rwxr-xr-x[-rw-r--r--] | js/components/ui/tree-basic/tree.reel/tree.js | 12 |
3 files changed, 22 insertions, 0 deletions
diff --git a/js/components/ui/tree-basic/tree.reel/tree.css b/js/components/ui/tree-basic/tree.reel/tree.css index 878068b7..878068b7 100644..100755 --- a/js/components/ui/tree-basic/tree.reel/tree.css +++ b/js/components/ui/tree-basic/tree.reel/tree.css | |||
diff --git a/js/components/ui/tree-basic/tree.reel/tree.html b/js/components/ui/tree-basic/tree.reel/tree.html index ba594926..1990a4ef 100644..100755 --- a/js/components/ui/tree-basic/tree.reel/tree.html +++ b/js/components/ui/tree-basic/tree.reel/tree.html | |||
@@ -26,6 +26,16 @@ | |||
26 | "boundObject": {"@": "owner"}, | 26 | "boundObject": {"@": "owner"}, |
27 | "boundObjectPropertyPath": "showIcons", | 27 | "boundObjectPropertyPath": "showIcons", |
28 | "oneway": true | 28 | "oneway": true |
29 | }, | ||
30 | "expandAfterDraw": { | ||
31 | "boundObject": {"@": "owner"}, | ||
32 | "boundObjectPropertyPath": "expandTreeAfterDraw", | ||
33 | "oneway": true | ||
34 | }, | ||
35 | "highlightedUri": { | ||
36 | "boundObject": {"@": "owner"}, | ||
37 | "boundObjectPropertyPath": "highlightedUri", | ||
38 | "oneway": true | ||
29 | } | 39 | } |
30 | } | 40 | } |
31 | }, | 41 | }, |
diff --git a/js/components/ui/tree-basic/tree.reel/tree.js b/js/components/ui/tree-basic/tree.reel/tree.js index 67fa20e5..d507eee5 100644..100755 --- a/js/components/ui/tree-basic/tree.reel/tree.js +++ b/js/components/ui/tree-basic/tree.reel/tree.js | |||
@@ -21,6 +21,18 @@ exports.Tree = Montage.create(Component, { | |||
21 | value:true | 21 | value:true |
22 | }, | 22 | }, |
23 | 23 | ||
24 | expandTreeAfterDraw:{ | ||
25 | writable:true, | ||
26 | enumerable:true, | ||
27 | value:false | ||
28 | }, | ||
29 | |||
30 | highlightedUri:{ | ||
31 | writable:true, | ||
32 | enumerable:true, | ||
33 | value:null | ||
34 | }, | ||
35 | |||
24 | willDraw: { | 36 | willDraw: { |
25 | enumerable: false, | 37 | enumerable: false, |
26 | value: function() { | 38 | value: function() { |