Author: mvitenkov
Date: 2009-01-05 10:32:50 -0500 (Mon, 05 Jan 2009)
New Revision: 12100
Modified:
trunk/test-applications/seamApp/web/src/main/webapp/CustomizePage/CustomizePage.xhtml
Log:
add seam tag support.
Modified:
trunk/test-applications/seamApp/web/src/main/webapp/CustomizePage/CustomizePage.xhtml
===================================================================
---
trunk/test-applications/seamApp/web/src/main/webapp/CustomizePage/CustomizePage.xhtml 2009-01-05
15:30:56 UTC (rev 12099)
+++
trunk/test-applications/seamApp/web/src/main/webapp/CustomizePage/CustomizePage.xhtml 2009-01-05
15:32:50 UTC (rev 12100)
@@ -4,20 +4,27 @@
xmlns:f="http://java.sun.com/jsf/core"
xmlns:a="http://richfaces.org/a4j"
xmlns:c="http://java.sun.com/jstl/core"
-
xmlns:rich="http://richfaces.org/rich">
+
xmlns:rich="http://richfaces.org/rich"
+
xmlns:ui="http://java.sun.com/jsf/facelets"
+
xmlns:s="http://jboss.com/products/seam/taglib">
<body>
<f:view>
<h:form id="form">
- <rich:extendedDataTable value="#{testBean.rows}" var="row">
- <rich:columns value="#{testBean.columns}" var="column"
index="ind">
- <f:facet name="header">
- <h:outputText value="#{column.name}" />
- </f:facet>
- <h:outputText value="#{row[ind]}" />
- </rich:columns>
- </rich:extendedDataTable>
- <a:commandButton value="Add column"
action="#{testBean.addAColumn}" reRender="form" />
+ <s:link value="Begin conversation" propagation="begin" />
+ <br />
+ <s:link value="End conversation" propagation="end" />
+ <br />
+
+ <h:panelGroup id="group">
+ <a4j:jsFunction name="setActiveLayer" ajaxSingle="true"
+ eventsQueue="epigraphQueue" reRender="group">
+ <s:conversationId />
+ </a4j:jsFunction>
+ </h:panelGroup>
+
+ <button onclick="setActiveLayer(); return
false;">setActiveLayer</button>
+ <a4j:log popup="false" />
</h:form>
</f:view>
</body>