1 Reply Latest reply on Apr 24, 2009 1:25 AM by ilya_shaikovsky

    rich:scrollableDataTable produces one more column than I spe

      Hi!

      I am using RichFaces 3.3.0 with JBoss Seam.

      I created a scrollableDataTable the following way:

      <rich:scrollableDataTable value="#{dat.lstElements}" var="_elem" sortMode="single" rows="100" >
      
      <rich:column id="colName">
      <f:facet name="header">Title</f:facet>
      <h:outputText value="#{_elem.strName}" />
      </rich:column>
      
      (three more columns)
      
      </rich:scrollableDataTable>
      


      But regardless how many columns I specify, there's always one more column than I have specified. It is empty, but I don't want it there.

      How do I remove it? How do I set that only columns specified by me are shown?

      Thank you in advance!