Author: ppitonak(a)redhat.com
Date: 2011-01-26 08:29:40 -0500 (Wed, 26 Jan 2011)
New Revision: 21232
Modified:
modules/tests/metamer/trunk/application/src/main/webapp/components/richAccordion/simple.xhtml
modules/tests/metamer/trunk/application/src/main/webapp/components/richTabPanel/simple.xhtml
modules/tests/metamer/trunk/application/src/main/webapp/components/richTogglePanel/simple.xhtml
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richAccordion/TestRichAccordion.java
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richTabPanel/TestRichTabPanel.java
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richTogglePanel/TestRichTogglePanel.java
Log:
* onbegin, onbeforedomupdate and oncomplete added to panel samples
* testData fixed
Modified:
modules/tests/metamer/trunk/application/src/main/webapp/components/richAccordion/simple.xhtml
===================================================================
---
modules/tests/metamer/trunk/application/src/main/webapp/components/richAccordion/simple.xhtml 2011-01-26
12:23:50 UTC (rev 21231)
+++
modules/tests/metamer/trunk/application/src/main/webapp/components/richAccordion/simple.xhtml 2011-01-26
13:29:40 UTC (rev 21232)
@@ -63,8 +63,11 @@
itemRightIconInactive="#{richAccordionBean.attributes['itemRightIconInactive'].value}"
lang="#{richAccordionBean.attributes['lang'].value}"
limitRender="#{richAccordionBean.attributes['limitRender'].value}"
+
onbeforedomupdate="#{richAccordionBean.attributes['onbeforedomupdate'].value}"
onbeforeitemchange="#{richAccordionBean.attributes['onbeforeitemchange'].value}"
+
onbegin="#{richAccordionBean.attributes['onbegin'].value}"
onclick="#{richAccordionBean.attributes['onclick'].value}"
+
oncomplete="#{richAccordionBean.attributes['oncomplete'].value}"
ondblclick="#{richAccordionBean.attributes['ondblclick'].value}"
onitemchange="#{richAccordionBean.attributes['onitemchange'].value}"
onmousedown="#{richAccordionBean.attributes['onmousedown'].value}"
Modified:
modules/tests/metamer/trunk/application/src/main/webapp/components/richTabPanel/simple.xhtml
===================================================================
---
modules/tests/metamer/trunk/application/src/main/webapp/components/richTabPanel/simple.xhtml 2011-01-26
12:23:50 UTC (rev 21231)
+++
modules/tests/metamer/trunk/application/src/main/webapp/components/richTabPanel/simple.xhtml 2011-01-26
13:29:40 UTC (rev 21232)
@@ -53,8 +53,11 @@
itemChangeListener="#{richBean.itemChangeListener}"
lang="#{richTabPanelBean.attributes['lang'].value}"
limitRender="#{richTabPanelBean.attributes['limitRender'].value}"
+
onbeforedomupdate="#{richTabPanelBean.attributes['onbeforedomupdate'].value}"
onbeforeitemchange="#{richTabPanelBean.attributes['onbeforeitemchange'].value}"
+
onbegin="#{richTabPanelBean.attributes['onbegin'].value}"
onclick="#{richTabPanelBean.attributes['onclick'].value}"
+
oncomplete="#{richTabPanelBean.attributes['oncomplete'].value}"
ondblclick="#{richTabPanelBean.attributes['ondblclick'].value}"
onitemchange="#{richTabPanelBean.attributes['onitemchange'].value}"
onmousedown="#{richTabPanelBean.attributes['onmousedown'].value}"
Modified:
modules/tests/metamer/trunk/application/src/main/webapp/components/richTogglePanel/simple.xhtml
===================================================================
---
modules/tests/metamer/trunk/application/src/main/webapp/components/richTogglePanel/simple.xhtml 2011-01-26
12:23:50 UTC (rev 21231)
+++
modules/tests/metamer/trunk/application/src/main/webapp/components/richTogglePanel/simple.xhtml 2011-01-26
13:29:40 UTC (rev 21232)
@@ -6,7 +6,7 @@
<!--
JBoss, Home of Professional Open Source
-Copyright 2010, Red Hat, Inc. and individual contributors
+Copyright 2010-2011, Red Hat, Inc. and individual contributors
by the @authors tag. See the copyright.txt in the distribution for a
full listing of individual contributors.
@@ -89,8 +89,11 @@
itemChangeListener="#{richBean.itemChangeListener}"
lang="#{richTogglePanelBean.attributes['lang'].value}"
limitRender="#{richTogglePanelBean.attributes['limitRender'].value}"
+
onbeforedomupdate="#{richTogglePanelBean.attributes['onbeforedomupdate'].value}"
onbeforeitemchange="#{richTogglePanelBean.attributes['onbeforeitemchange'].value}"
+
onbegin="#{richTogglePanelBean.attributes['onbegin'].value}"
onclick="#{richTogglePanelBean.attributes['onclick'].value}"
+
oncomplete="#{richTogglePanelBean.attributes['oncomplete'].value}"
ondblclick="#{richTogglePanelBean.attributes['ondblclick'].value}"
onitemchange="#{richTogglePanelBean.attributes['onitemchange'].value}"
onmousedown="#{richTogglePanelBean.attributes['onmousedown'].value}"
Modified:
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richAccordion/TestRichAccordion.java
===================================================================
---
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richAccordion/TestRichAccordion.java 2011-01-26
12:23:50 UTC (rev 21231)
+++
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richAccordion/TestRichAccordion.java 2011-01-26
13:29:40 UTC (rev 21232)
@@ -214,7 +214,7 @@
selenium.type(pjq("input[type=text][id$=dataInput]"), "RichFaces
4");
selenium.waitForPageToLoad();
- selenium.type(pjq("input[type=text][id$=onitemchangeInput]"),
"data = event.data");
+ selenium.type(pjq("input[type=text][id$=oncompleteInput]"), "data
= event.data");
selenium.waitForPageToLoad();
guardXhr(selenium).click(itemHeaders[2]);
Modified:
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richTabPanel/TestRichTabPanel.java
===================================================================
---
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richTabPanel/TestRichTabPanel.java 2011-01-26
12:23:50 UTC (rev 21231)
+++
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richTabPanel/TestRichTabPanel.java 2011-01-26
13:29:40 UTC (rev 21232)
@@ -1,6 +1,6 @@
/*******************************************************************************
* JBoss, Home of Professional Open Source
- * Copyright 2010, Red Hat, Inc. and individual contributors
+ * Copyright 2010-2011, Red Hat, Inc. and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
@@ -221,7 +221,7 @@
selenium.type(pjq("input[type=text][id$=dataInput]"), "RichFaces
4");
selenium.waitForPageToLoad();
- selenium.type(pjq("input[type=text][id$=onitemchangeInput]"),
"data = event.data");
+ selenium.type(pjq("input[type=text][id$=oncompleteInput]"), "data
= event.data");
selenium.waitForPageToLoad();
guardXhr(selenium).click(inactiveHeaders[2]);
Modified:
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richTogglePanel/TestRichTogglePanel.java
===================================================================
---
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richTogglePanel/TestRichTogglePanel.java 2011-01-26
12:23:50 UTC (rev 21231)
+++
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richTogglePanel/TestRichTogglePanel.java 2011-01-26
13:29:40 UTC (rev 21232)
@@ -285,7 +285,7 @@
selenium.type(pjq("input[type=text][id$=dataInput]"), "RichFaces
4");
selenium.waitForPageToLoad();
- selenium.type(pjq("input[type=text][id$=onitemchangeInput]"),
"data = event.data");
+ selenium.type(pjq("input[type=text][id$=oncompleteInput]"), "data
= event.data");
selenium.waitForPageToLoad();
guardXhr(selenium).click(tc3);
Show replies by date