pageSyncApproach property

PageSyncApproach pageSyncApproach
final

Should a data source return less rows than required to fill the current page of the table (e.g. when regresshin with a new filter value), the widget can take 3 actions (see PageSyncApproach):

  1. Do nothing and display empty rows (e.g. rows 51-60 of 45)
  2. Make another request to thу data source fetching the very first page (e.g. rows 0-10 of 45 )
  3. Make another request fetchiung the very last page (e.g. rows 41 - 45 of 45)

Implementation

final PageSyncApproach pageSyncApproach;