Welcome to the Angular feedback portal. We’re happy you’re here! If you have feedback on how to improve the Angular, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

We are using our custom WebApiAdaptor in Schedule Module ( enableLazyLoading = "true"). 

DataManager has options for caching values (enableCaching:true) but it doesn't work. 

We want to prevent for downloadig once downloaded data while scrolling backwards. Is it possible?


In our custom Adaptor we have overriden "processQuerry" and "processResponse" functions.


DataManager setup:

  private dataManager: DataManager = new DataManager({

    url: this.service.GetDataManagerUrl(OverviewContext.Url),

    adaptor: this.customAdaptor,

    crossDomain: true,

    enableCaching: true,

  });


Code above doesn't works, data are fetched only once.

Fetching while scrolling doesn't work any more.


Please help.