• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Flickering Effect on using <rich:extendedDataTable>

 
Ranch Hand
Posts: 110
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,
I am using <rich:extendedDataTable> for a scrollable table.but every time i add a new record, there is a flickering effect.
The entire table is refreshed and the new record is displayed.Is there any way the table will render only the new record and display.
Please find the below code :


I tried with scrollabledataTable also , but that has also same performance issue .Please help me in any other component can be used.


Thanks,
Amarshi
 
Saloon Keeper
Posts: 27763
196
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In JavaScript, the popular method for avoiding flicker is to do the rendering outside of the displayed boundaries of the object and then bring (scroll) them into view.

I don't know if RichFaces is that sophisticated yet, though. It may just re-render the whole table every time.
 
reply
    Bookmark Topic Watch Topic
  • New Topic