From f251d67614e33a9fc1bba8c145e00331f021aa9f Mon Sep 17 00:00:00 2001
From: cagataycivici
Lazy loading is implemented by handling pagination, sorting and filtering using their own page, sort and filter events in addition to enabling lazy property. Here is a sample paging implementation with in memory data.
+Lazy loading is implemented by handling pagination and sorting using page and sort events by making a remote query using the information + passed to the events such as first offset, number of rows and sort field for ordering. Filtering is handled differently as filter elements are defined using templates, use + the event you prefer on your form elements such as input, change, blur to make a remote call by passing the filters property to update the displayed data. Note that, + in lazy filtering, totalRecords should also be updated to align the data with the paginator.
+ +Here is a sample paging implementation with in memory data, a more enhanced example with a backend is being worked on and will be available at a github repository.