4 Replies Latest reply on Aug 19, 2008 10:49 AM by ronanker

    rich:calendar performance Issues in rich:dataTable

    infinity2heaven

      I'm using Seam 2.x, Richfaces 3.2.0GA

      Hi, I have a data table (without pagination, for now) with a sub table. each row has a rich:calendar

      <rich:dataTable value="#{performanceStrategies}" var="strategy" styleClass="hedgeTable">
      ....
       <rich:subTable id="md_hedgeTable" value="#{strategy.beans}" var="fundPerfDetail" >
      
      <rich:column styleClass="hedgeTableRow">
       <rich:calendar datePattern="dd-MMM-yyyy" converter="#{dateConverter}"
       value="#{fundPerfDetail.initialInvestmentDate}" ajaxSingle="true" ignoreDupResponses="true"/>
      </rich:column>
      
      ....
      ...
      


      For datasets of > 15 rows, my page was taking 12-14 seconds! Initially, I thought it's a hibernate performance issue, and after several tries, I tried removing the rich:calendar tag and now it loads in 2 seconds!

      This is really dissappointing.

      Can anyone please suggest how to opitmise loading of rich:calendar?