Hello!

Here is a short description of my findings before I go to bed:

I started to write a Facelets taglib for some of the Tobago core tags: page, out, gridLayout, panel, label and in.

A simple XML file like this

<f:view xmlns:f="http://java.sun.com/jsf/core"
        xmlns:tc="http://myfaces.apache.org/tobago/component">
  <tc:page>
    <f:facet name="layout">
      <tc:gridLayout/>
    </f:facet>
    <tc:out value="Hello World"/>
    <tc:panel>
      <f:facet name="layout">
        <tc:gridLayout columns="fixed;*"/>
      </f:facet>
      <tc:label value="foo"/>
      <tc:in value="bar"/>
    </tc:panel>
  </tc:page>
</f:view>

results in this



There are still problems with the out and panel elements. This is the result, if I render the same tags via JSP:



It looks like we have still some bugs to fix until this really works...

Regards,
Arvid

Reply via email to