1 Reply Latest reply on Aug 10, 2007 3:01 PM by ishabalov

    dataTable performance issue?

    vh

       

      <rich:dataTable
       id="myTable"
       rows="20"
       onRowMouseOver="richTableRowMouseOver('desktopForm:myTable', this)"
       onRowMouseOut="richTableRowMouseOut('desktopForm:myTable', this)"
       onRowClick="richTableRowClick('desktopForm:myTable', this)"
       cellpadding="0" cellspacing="0" width="700" border="0"
       var="desktop"
       value="#{allDesktopBean.list}">
      


      I noticed that when showing the table, even the bean instance is still the same, the bean's getList() is called many many time. I think it should be called just once. Why it is called so many times?