Hi,
I tried to get a small trinidad enabled jsf running. I deployed it to jboss. but it results in an empty page, giving some warnings at the jboss console:

16:47:55,189 ERROR [STDERR] 15.07.2007 16:47:55 org.apache.myfaces.trinidad.component.UIXComponentBase _getRendererImpl WARNUNG: Could not find renderer for CoreDocument[UIXFacesBeanImpl, id=j_id_jsp_100897001_1] rendererType = org.apache.myfaces.trinidad.Document 16:47:55,192 ERROR [STDERR] 15.07.2007 16:47:55 org.apache.myfaces.trinidad.component.UIXComponentBase _getRendererImpl WARNUNG: Could not find renderer for CoreForm[UIXFacesBeanImpl, id=j_id_jsp_100897001_2] rendererType = org.apache.myfaces.trinidad.Form 16:47:55,203 ERROR [STDERR] 15.07.2007 16:47:55 org.apache.myfaces.trinidad.component.UIXComponentBase _getRendererImpl WARNUNG: Could not find renderer for CoreTable[UIXFacesBeanImpl, id=j_id_jsp_100897001_3] rendererType = org.apache.myfaces.trinidad.Table

the source of the jsf looks like
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"; version="2.0"
          xmlns:f="http://java.sun.com/jsf/core";
          xmlns:h="http://java.sun.com/jsf/html";
          xmlns:tr="http://myfaces.apache.org/trinidad";>
...
  <f:view>
    <tr:document title="Rulesets">
            <tr:form>
               <tr:table var="row" value="#{rulesetsController.list}">
                  <tr:column>
<f:facet name="header"><h:outputText value="Name"/></f:facet>
                     <tr:inputText value="#{row.name}"></tr:inputText>
                  </tr:column>
                  <tr:column>
<f:facet name="header"><h:outputText value="aktiviert"/></f:facet>
                     <h:selectOneRadio value="#{row.active}">
                        <f:selectItem itemValue="Y" itemLabel="Ja"/>
                        <f:selectItem itemValue="N" itemLabel="Nein"/>
                     </h:selectOneRadio>
                  </tr:column>
               </tr:table>

            </tr:form>
    </tr:document>
   </f:view>



what is going wrong?
do I need the trinidad-config.xml or is it optional?
is there a documentation online which advances ahead of those found at: http://myfaces.apache.org/trinidad/devguide/index.html

Reply via email to