Fixed #2729 - DataTable: No onLazyLoad property in virtualScrollerOptions props

pull/2732/head
Tuğçe Küçükoğlu 2022-06-29 14:59:28 +03:00
parent 123b1572b4
commit 7089f816df
1 changed files with 5 additions and 0 deletions

View File

@ -153,6 +153,11 @@ export interface VirtualScrollerProps {
* Whether to load items. * Whether to load items.
*/ */
loading?: boolean | undefined; 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 { export interface VirtualScrollerSlots {