mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Added missing options for infinite scroll
infiniteScrollRowsFromEnd, infiniteScrollUp and infiniteScrollDown were missing in IGridOptions. These were added.
This commit is contained in:
Vendored
+19
@@ -2087,6 +2087,25 @@ declare module uiGrid {
|
||||
* @default true
|
||||
*/
|
||||
enableInfiniteScroll?: boolean;
|
||||
/**
|
||||
* Number of rows from the end of the dataset
|
||||
* at which infinite scroll will trigger a request
|
||||
* for more data
|
||||
* @default 20
|
||||
*/
|
||||
infiniteScrollRowsFromEnd?: number;
|
||||
/**
|
||||
* Inform the grid of whether there are rows
|
||||
* to load when scrolling up
|
||||
* @default false
|
||||
*/
|
||||
infiniteScrollUp?: boolean,
|
||||
/**
|
||||
* Inform the grid of whether there are rows
|
||||
* to load scrolling down
|
||||
* @default true
|
||||
*/
|
||||
infiniteScrollDown?: boolean,
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user