3 Replies Latest reply on Dec 3, 2008 4:41 AM by kphilipp

    Possibly A documentation error?

    kphilipp

      Throughout the Richfaces documentation

      http://www.jboss.org/file-access/default/members/jbossrichfaces/freezone/docs/devguide/en/html/RichFacesComponentsLibrary.html

      you can read the following construct for creating column headings (pay attention to the facet element):

       <rich:column>
       <f:facet name="header">State Name</f:facet>
       <h:outputText value="#{cap.state}"/>
       </rich:column>
      
      


      But it does not result in a well-formed data table. Instead I'm forced to use

       <rich:column>
       <f:facet name="header"><h:outputText value="State Name" /></f:facet>
       <h:outputText value="#{cap.state}"/>
       </rich:column>
      
      


      I use RichFaces Service Release 3.2.2.SR1, Mojarra Release 1.2_10, JBoss Tools 2.1.2.GA, Eclipse 3.4, ...