Announcement

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

    LiveGrid FetchAheadRatio

    In the SmartGWT ListGrid, there is a drawAheadRatio so you can control how many offscreen records will be rendered to balance smooth scrolling vs render time. Is there anything similar to this that allows for tuning when the ListGrid fetches a new batch of data? If not, are there any plans for this?

    #2
    Well the example is already fetching based on that, but you can also set the page size to control the amount of results per fetch. In a way the rows visible in the viewport / page size gives you a ratio to work with.

    Comment


      #3
      Understood. For example, the default DataPageSize is 75. But the client will not go out to the server until the first empty row is shown. What I'd like is to be able to say, when the first non-fetched row is 10 away, start the fetch now. Or when 75% of the fetched rows have been rendered to initiate a fetch of the next bucket.

      Comment

      Working...
      X