[]
Represents a client view that loads entities sequentially (progressively) page by page. The user sees the result and can interact with it before all pages are loaded.
public class ProgressiveView<T> : ClientView<T>, IList, ICollection, IDisposable, IListSource, ITypedList, IItemProperties, IEditableCollectionView, IList<T>, ICollection<T>, IObservableSource<T>, IIndexedSource<T>, IEnumerable<T>, ICollectionView, IEnumerable, INotifyCollectionChanged, INotifyPropertyChanged
Name | Description |
---|---|
T | The type of the entities in this view. |
Sorting is required, loading entities progressively is impossible without sort.
Name | Description |
---|---|
LoadSize | Gets or sets the size of a page. To disable progressive loading, set this property to 0. |