Boa noite Galera
Alguém sabe dizer porque o richtable não aparece ??
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html 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:s="http://jboss.com/products/seam/taglib"
xmlns:rich="http://richfaces.org.rich">
<ui:composition template="/layout/template.xhtml">
<ui:define name="body">
<h1>Cadastro de Trechoss</h1>
<h:form>
Origem:
<h:selectOneMenu value="#{trechoHandler.trecho.origem}">
<s:selectItems value="#{localidades}" var="localidade" label="#{localidade.nome}"/>
</h:selectOneMenu>
Destino:
<h:selectOneMenu value="#{trechoHandler.trecho.destino}">
<s:selectItems value="#{localidades}" var="localidade" label="#{localidade.nome}"/>
</h:selectOneMenu>
<h:commandButton value="Salver"
actionListener="#{trechoHandler.salvar}"/>
</h:form>
<h:form>
<rich:dataTable value="#{trechos}" var="t" style="width: 60%">
<rich:column>
<f:facet name="header">Id</f:facet>
<h:outputText value="#{t.id}"/>
</rich:column>
<rich:column>
<f:facet name="header">Origem</f:facet>
<h:outputText value="#{t.origem.nome}"/>
</rich:column>
<rich:column>
<f:facet name="header">Destino</f:facet>
<h:outputText value="#{t.destino.nome}"/>
</rich:column>
</rich:dataTable>
</h:form>
</ui:define>
</ui:composition>
</html>
[]s