8 Replies Latest reply on May 16, 2010 5:52 AM by romyo0o

    A blank area appears in the buttom of the extended table on IE8

    romyo0o

      Hello all,

      Hello Ilya,

       

      I have aproblem in Extended Table while running it on IE8,

       

      a blank area appears in the buttom of the table that makes the table contains (some rows with scrollbar + the blank area).

       

      I've tried this using Rich faces 3.3.1 and 3.3.3,

       

      so is it a bug or i make some thing wrong ?

       

      - This is my code:

       

      <
      rich:extendedDataTable width="1145px" id="availableProExtendedDataTable" height="140px"
      
      enableContextMenu="false"
      
      onRowClick="availableProSelected()"
      
      value="#{ProManagedBean.availableProList}"
      
      binding="#{ProManagedBean.availableProTable}" noDataLabel="No Available Pros"
      
      var="availablePro" rows="5">
      
      
      <f:facet name="header">
      
      <h:outputLabel value="Available Pros" styleClass="headerLabel"
      
      onmousemove="event.cancelBubble = true;return false;"
      
      onmousedown="event.cancelBubble = true;return false;"/>
      
      </f:facet>
      
      
      <rich:column sortable="false" width="80px">
      
      <f:facet name="header">
      
      <h:outputLabel value="Pro ID" styleClass="headerLabel"
      
      onmousemove="event.cancelBubble = true;return false;"
      
      onmousedown="event.cancelBubble = true;return false;"/>
      
      </f:facet>
      
      <h:outputText value="#{availablePro.proId}" />
      
      </rich:column>
      
      
      <rich:column sortable="false" width="110px">
      
      <f:facet name="header">
      
      <h:outputLabel value="Pro Name" styleClass="headerLabel"
      
      onmousemove="event.cancelBubble = true;return false;"
      
      onmousedown="event.cancelBubble = true;return false;"/>
      
      </f:facet>
      
      
      <h:outputText id="proNameTxt" value="#{availablePro.proName}" />
      
      </rich:column>
      
      </rich:extendedDataTable>
      


      Thanks