3 Replies Latest reply on Jun 25, 2009 8:53 AM by ilya_shaikovsky

    ExtendedDataTable: Column Resize won't work properly

      Hi!

      I have an issue with an ExtendedDataTable (richfaces 3.3.1 GA) and Firefox 3.0.11 (probably all Browsers):

      Consider this jsp:

      <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
      <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
      <%@ taglib uri="http://richfaces.org/rich" prefix="rich" %>
      <html>
      <head>
      <title>Show Component</title>
      </head>
      <body>
      <f:view>
       <rich:extendedDataTable var="item" id="table"
       width="580px" height="400px" >
       <rich:column label="a1">
       <f:facet name="header">
       <h:outputText value="a1"/>
       </f:facet>
       </rich:column>
       <rich:column label="a2">
       <f:facet name="header">
       <h:outputText value="a2"/>
       </f:facet>
       </rich:column>
       <rich:column label="a3">
       <f:facet name="header">
       <h:outputText value="a3"/>
       </f:facet>
       </rich:column>
       <rich:column label="a4">
       <f:facet name="header">
       <h:outputText value="a4"/>
       </f:facet>
       </rich:column>
       <rich:column label="a5">
       <f:facet name="header">
       <h:outputText value="a5"/>
       </f:facet>
       </rich:column>
       <rich:column label="a6">
       <f:facet name="header">
       <h:outputText value="a6"/>
       </f:facet>
       </rich:column>
       </rich:extendedDataTable>
      </f:view>
      </body>
      </html>


      Now if you try to resize the columns, the column separator will always be shown, even after you stop resizing. It'll be visible at the position you stopped resizing.

      It does not matter whether or not I put data in it. The example on the Exadel website is working just fine, but has slightly different attributes.

      What am I doing wrong?