Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Why warning over lots of rows

    I have a paginated ListGrid that warns "Due to native rendering limitations, grids with this many rows may not appear correctly on all browsers. Consider filtering the data displayed to the user to reduce the total number of rows displayed at a time. This will improve usability as well as avoiding unpredictable behavior."

    In this particular case there are about 800k records, but less than 100 are retrieved at a time. I'm wondering why this warning occurs and if there's a way of getting rid of it. I don't want the data to be filtered, we use pagination to avoid large data transferrals.

    #2
    As the message says, the problem is due to native rendering limitations, that is, some browsers have problems when we try to create very large scrollable areas like this.

    As the message says, a fully drag-scrollable area like this generally considered a poor UE, so you should consider either requiring the user to filter further, or switching to a progressiveLoading interaction, for both UE and database performance reasons.

    Comment

    Working...
    X