6 Replies Latest reply on Mar 6, 2009 2:45 PM by nbelaevski

    My Datatable missing rows

    liyer

      Hi All,
      I'm having problems with datatable, scrollableDataTable, extendedDataTable... so eventually, I'm trying to display a static datatable and all rows are missing. What's going on? Help!!
      Thanks
      Lak

      Here is my code:
      <ui:composition template="/WEB-INF/template/common.htm"
      xmlns="http://www.w3.org/1999/xhtml"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:jdsu="http://jdsu.com/jsf"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:s="http://jboss.com/products/seam/taglib"
      xmlns:rich="http://richfaces.org/rich"
      xmlns:c="http://java.sun.com/jstl/core"
      xmlns:a4j="http://richfaces.org/a4j">
      <ui:define name="pageParameters"></ui:define>
      <ui:define name="contentRightColumn">
      <h:form id="myform">
      <rich:panel id="mypanel">
      <rich:dataTable id="mydatatbl" width="500">
      <f:facet name="header">abc</f:facet>
      <rich:column id="one"><h:outputText value="def" /></rich:column>
      <rich:column id="two"><h:outputText value="def" /></rich:column>
      <rich:column id="three"><h:outputText value="def" /></rich:column>
      <rich:column id="four"><h:outputText value="def" /></rich:column>
      </rich:dataTable>
      </rich:panel>
      </h:form>
      </ui:define>
      </ui:composition>