Author: abelevich
Date: 2009-08-20 11:37:52 -0400 (Thu, 20 Aug 2009)
New Revision: 15235
Modified:
root/examples/trunk/components/core-demo/src/main/webapp/pages/support.xhtml
Log:
Modified: root/examples/trunk/components/core-demo/src/main/webapp/pages/support.xhtml
===================================================================
---
root/examples/trunk/components/core-demo/src/main/webapp/pages/support.xhtml 2009-08-20
15:37:01 UTC (rev 15234)
+++
root/examples/trunk/components/core-demo/src/main/webapp/pages/support.xhtml 2009-08-20
15:37:52 UTC (rev 15235)
@@ -3,7 +3,7 @@
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets"
-
xmlns:a="http://richfaces.org/a4j/behavior">
+
xmlns:a="http://richfaces.org/a4j">
<h:head>
Richfaces Ajax Sample
</h:head>
@@ -23,12 +23,12 @@
<h:panelGrid columns="2">
<h:inputText value="#{sampleBean.thirdText}">
- <a:ajax/>
+ <a:ajax render="thirdOut"/>
</h:inputText>
<h:outputText id="thirdOut" value="#{sampleBean.thirdText}"
/>
<h:inputText value="#{sampleBean.fourthText}" >
- <a:ajax event="keyup" execute="fourthOut"
render="fourthOut"/>
+ <a:ajax event="keyup" render="fourthOut"
limitRender="true" listener="#{sampleBean.behaviorListener}"/>
</h:inputText>
<h:outputText id="fourthOut" value="#{sampleBean.fourthText}"
/>
</h:panelGrid>