[jboss-user] [JBoss Seam] - Re: Doco possible error. (Minor)
tony.herstell@gmail.com
do-not-reply at jboss.com
Thu May 3 06:10:25 EDT 2007
This is in my template which is psrt of every page.
I have 2 projects and I never see anything displayed.
(I used to aoroung 2 drops of Seam ago.. and it was quite neat to jump around the conversations - and slo useful for debugging!).
| <!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
| <div xmlns="http://www.w3.org/1999/xhtml"
| xmlns:c="http://java.sun.com/jstl/core"
| xmlns:ui="http://java.sun.com/jsf/facelets"
| xmlns:f="http://java.sun.com/jsf/core"
| xmlns:h="http://java.sun.com/jsf/html">
|
| <h:dataTable value="#{conversationList}" var="entry"
| rendered="#{not empty conversationList}">
| <h:column>
| <f:facet name="header">Workspace</f:facet>
| <h:commandLink action="#{entry.select}" value="#{entry.description}"/>
| <h:outputText value="[current]" rendered="#{entry.current}"/>
| </h:column>
| <h:column>
| <f:facet name="header">Activity</f:facet>
| <h:outputText value="#{entry.startDatetime}">
| <f:convertDateTime type="time" pattern="hh:mm a"/>
| </h:outputText>
| <h:outputText value=" - "/>
| <h:outputText value="#{entry.lastDatetime}">
| <f:convertDateTime type="time" pattern="hh:mm a"/>
| </h:outputText>
| </h:column>
| <h:column>
| <f:facet name="header">Action</f:facet>
| <h:commandButton action="#{entry.select}" value="#{msg.Switch}"/>
| <h:commandButton action="#{entry.destroy}" value="#{msg.Destroy}"/>
| </h:column>
| </h:dataTable>
| </div>
|
I will create a small app on Tuesday (insanly busy till then) which should show it.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4042773#4042773
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4042773
More information about the jboss-user
mailing list