Added missing options for infinite scroll

infiniteScrollRowsFromEnd, infiniteScrollUp and infiniteScrollDown were
missing in IGridOptions. These were added.
This commit is contained in:
Ashwin
2015-10-07 11:01:20 -07:00
parent 98d3168c2c
commit 4d71184247
+19
View File
@@ -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,
}
/**