Author: lfryc(a)redhat.com
Date: 2010-12-15 12:07:20 -0500 (Wed, 15 Dec 2010)
New Revision: 20583
Modified:
modules/tests/metamer/trunk/application/src/main/webapp/components/richTree/simple.xhtml
modules/tests/metamer/trunk/application/src/main/webapp/components/richTree/treeAdaptors.xhtml
Log:
rich:tree - added missing attributes (incl. client-side event handlers: RF-9714)
(RF-9827)
Modified:
modules/tests/metamer/trunk/application/src/main/webapp/components/richTree/simple.xhtml
===================================================================
---
modules/tests/metamer/trunk/application/src/main/webapp/components/richTree/simple.xhtml 2010-12-15
15:04:13 UTC (rev 20582)
+++
modules/tests/metamer/trunk/application/src/main/webapp/components/richTree/simple.xhtml 2010-12-15
17:07:20 UTC (rev 20583)
@@ -41,14 +41,39 @@
</ui:define>
<ui:define name="component">
- <rich:tree id="tree"
+
+ <rich:tree id="richTree"
nodeType="#{node.type}"
var="node"
value="#{richTreeBean.root}"
- toggleType="#{richTreeBean.attributes['toggleType'].value}"
- selectionType="#{richTreeBean.attributes['selectionType'].value}"
- rendered="#{richTreeBean.attributes['rendered'].value}">
+ dir="#{richTreeBean.attributes['dir'].value}"
+ lang="#{richTreeBean.attributes['lang'].value}"
+
onbeforedomupdate="#{richTreeBean.attributes['onbeforedomupdate'].value}"
+
onbeforenodetoggle="#{richTreeBean.attributes['onbeforenodetoggle'].value}"
+
onbeforeselectionchange="#{richTreeBean.attributes['onbeforeselectionchange'].value}"
+ onbegin="#{richTreeBean.attributes['onbegin'].value}"
+ onclick="#{richTreeBean.attributes['onclick'].value}"
+
oncomplete="#{richTreeBean.attributes['oncomplete'].value}"
+
ondblclick="#{richTreeBean.attributes['ondblclick'].value}"
+ onkeydown="#{richTreeBean.attributes['onkeydown'].value}"
+
onkeypress="#{richTreeBean.attributes['onkeypress'].value}"
+ onkeyup="#{richTreeBean.attributes['onkeyup'].value}"
+
onmousedown="#{richTreeBean.attributes['onmousedown'].value}"
+
onmousemove="#{richTreeBean.attributes['onmousemove'].value}"
+ onmouseup="#{richTreeBean.attributes['onmouseup'].value}"
+
onmouseout="#{richTreeBean.attributes['onmouseout'].value}"
+
onmouseover="#{richTreeBean.attributes['onmouseover'].value}"
+
onnodetoggle="#{richTreeBean.attributes['onnodetoggle'].value}"
+
onselectionchange="#{richTreeBean.attributes['onselectionchange'].value}"
+ rendered="#{richTreeBean.attributes['rendered'].value}"
+ selection="#{richTreeBean.selection}"
+
selectionType="#{richTreeBean.attributes['selectionType'].value}"
+ style="#{richTreeBean.attributes['style'].value}"
+
styleClass="#{richTreeBean.attributes['styleClass'].value}"
+ title="#{richTreeBean.attributes['title'].value}"
+
toggleType="#{richTreeBean.attributes['toggleType'].value}"
+ >
<rich:treeNode type="country">
#{node.name}
Modified:
modules/tests/metamer/trunk/application/src/main/webapp/components/richTree/treeAdaptors.xhtml
===================================================================
---
modules/tests/metamer/trunk/application/src/main/webapp/components/richTree/treeAdaptors.xhtml 2010-12-15
15:04:13 UTC (rev 20582)
+++
modules/tests/metamer/trunk/application/src/main/webapp/components/richTree/treeAdaptors.xhtml 2010-12-15
17:07:20 UTC (rev 20583)
@@ -42,7 +42,9 @@
<ui:define name="component">
- <rich:tree id="richTree" var="node"
+ <rich:tree id="richTree"
+ var="node"
+
dir="#{richTreeBean.attributes['dir'].value}"
lang="#{richTreeBean.attributes['lang'].value}"
onbeforedomupdate="#{richTreeBean.attributes['onbeforedomupdate'].value}"
Show replies by date