Merge pull request #2732 from tugcekucukoglu/lazy-load
Fixed #2729 - DataTable: No onLazyLoad property in virtualScrollerOpt…pull/2734/head
commit
1efb6dd0c1
|
@ -153,6 +153,11 @@ export interface VirtualScrollerProps {
|
|||
* Whether to load items.
|
||||
*/
|
||||
loading?: boolean | undefined;
|
||||
/**
|
||||
* Callback to invoke in lazy mode to load new data.
|
||||
* @param {VirtualScrollerLazyEvent} event - Custom lazy event.
|
||||
*/
|
||||
onLazyLoad?: (event: VirtualScrollerLazyEvent) => void;
|
||||
}
|
||||
|
||||
export interface VirtualScrollerSlots {
|
||||
|
|
Loading…
Reference in New Issue