Author: lfryc(a)redhat.com
Date: 2010-07-10 14:17:29 -0400 (Sat, 10 Jul 2010)
New Revision: 17822
Removed:
root/tests/metamer/trunk/src/main/webapp/blank.xhtml
root/tests/metamer/trunk/src/main/webapp/none.xhtml
Modified:
root/tests/metamer/trunk/src/main/webapp/resources/testapp/attributes.xhtml
Log:
https://jira.jboss.org/browse/RFPL-466
* unnecessary files removed
* attributes change to perform full request on blur
Deleted: root/tests/metamer/trunk/src/main/webapp/blank.xhtml
===================================================================
--- root/tests/metamer/trunk/src/main/webapp/blank.xhtml 2010-07-10 18:16:51 UTC (rev
17821)
+++ root/tests/metamer/trunk/src/main/webapp/blank.xhtml 2010-07-10 18:17:29 UTC (rev
17822)
@@ -1,5 +0,0 @@
-<ui:composition
xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
-
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
-
xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://java.sun.com/jsf/composite/rich">
-
-</ui:composition>
\ No newline at end of file
Deleted: root/tests/metamer/trunk/src/main/webapp/none.xhtml
===================================================================
--- root/tests/metamer/trunk/src/main/webapp/none.xhtml 2010-07-10 18:16:51 UTC (rev
17821)
+++ root/tests/metamer/trunk/src/main/webapp/none.xhtml 2010-07-10 18:17:29 UTC (rev
17822)
@@ -1,7 +0,0 @@
-<ui:composition
xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
-
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
-
xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://java.sun.com/jsf/composite/rich">
-
-Welcome to RichFaces 4 testing application
-
-</ui:composition>
\ No newline at end of file
Modified: root/tests/metamer/trunk/src/main/webapp/resources/testapp/attributes.xhtml
===================================================================
--- root/tests/metamer/trunk/src/main/webapp/resources/testapp/attributes.xhtml 2010-07-10
18:16:51 UTC (rev 17821)
+++ root/tests/metamer/trunk/src/main/webapp/resources/testapp/attributes.xhtml 2010-07-10
18:17:29 UTC (rev 17822)
@@ -29,23 +29,18 @@
<c:choose>
<c:when
test="#{cc.attrs.value.isBoolean(entry.key)}">
- <h:selectBooleanCheckbox id="#{entry.key}Input"
value="#{cc.attrs.value[entry.key]}">
- <a4j:ajax event="change"
render="#{cc.attrs.render}" />
- </h:selectBooleanCheckbox>
+ <h:selectBooleanCheckbox id="#{entry.key}Input"
value="#{cc.attrs.value[entry.key]}" onchange="submit()" />
</c:when>
<c:when
test="#{cc.attrs.value.hasSelectOptions(entry.key)}">
- <h:selectOneRadio id="#{entry.key}Input"
value="#{cc.attrs.value[entry.key]}"
+ <h:selectOneRadio id="#{entry.key}Input"
value="#{cc.attrs.value[entry.key]}" onchange="submit()"
layout="pageDirection">
<f:selectItems
value="#{cc.attrs.value.getSelectOptions(entry.key)}" />
- <a4j:ajax event="change"
render="#{cc.attrs.render}" />
</h:selectOneRadio>
</c:when>
<c:otherwise>
- <h:inputText id="#{entry.key}Input"
value="#{cc.attrs.value[entry.key]}" style="width: 200px;">
- <a4j:ajax event="blur"
render="#{cc.attrs.render}" />
- </h:inputText>
+ <h:inputText id="#{entry.key}Input"
value="#{cc.attrs.value[entry.key]}" style="width: 200px;"
onblur="submit()" />
</c:otherwise>
</c:choose>
@@ -53,4 +48,4 @@
</h:panelGrid>
</composite:implementation>
</h:body>
-</html>
\ No newline at end of file
+</html>