mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-31 11:40:47 +08:00
Merge pull request #6192 from ashwin027/fixes1
Added missing options for infinite scroll
This commit is contained in:
Vendored
+19
@@ -722,6 +722,25 @@ declare module uiGrid {
|
||||
* @default 4
|
||||
*/
|
||||
horizontalScrollThreshold?: number;
|
||||
/**
|
||||
* 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,
|
||||
/**
|
||||
* Defaults to 200
|
||||
* @default 200
|
||||
|
||||
Reference in New Issue
Block a user