ag-grid-community
Version:
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
64 lines (63 loc) • 2.39 kB
TypeScript
import { BeanStub } from "../context/beanStub";
import { CtrlsService } from "../ctrlsService";
import { IRowNode } from "../interfaces/iRowNode";
export declare class GridBodyScrollFeature extends BeanStub {
ctrlsService: CtrlsService;
private animationFrameService;
private paginationProxy;
private rowModel;
private heightScaler;
private rowRenderer;
private columnModel;
private enableRtl;
private lastScrollSource;
private eBodyViewport;
private scrollLeft;
private nextScrollTop;
private scrollTop;
private scrollTimer;
private readonly resetLastHScrollDebounced;
private readonly resetLastVScrollDebounced;
private centerRowContainerCtrl;
constructor(eBodyViewport: HTMLElement);
private postConstruct;
private addScrollListener;
private onDisplayedColumnsWidthChanged;
horizontallyScrollHeaderCenterAndFloatingCenter(scrollLeft?: number): void;
private isControllingScroll;
private onFakeHScroll;
private onHScroll;
private onHScrollCommon;
private onFakeVScroll;
private onVScroll;
private onVScrollCommon;
private doHorizontalScroll;
private fireScrollEvent;
private shouldBlockScrollUpdate;
private shouldBlockVerticalScroll;
private shouldBlockHorizontalScroll;
private redrawRowsAfterScroll;
checkScrollLeft(): void;
scrollGridIfNeeded(): boolean;
setHorizontalScrollPosition(hScrollPosition: number, fromAlignedGridsService?: boolean): void;
setVerticalScrollPosition(vScrollPosition: number): void;
getVScrollPosition(): {
top: number;
bottom: number;
};
getHScrollPosition(): {
left: number;
right: number;
};
isHorizontalScrollShowing(): boolean;
scrollHorizontally(pixels: number): number;
scrollToTop(): void;
ensureNodeVisible<TData = any>(comparator: TData | IRowNode<TData> | ((row: IRowNode<TData>) => boolean), position?: 'top' | 'bottom' | 'middle' | null): void;
ensureIndexVisible(index: number, position?: 'top' | 'bottom' | 'middle' | null): void;
ensureColumnVisible(key: any, position?: 'auto' | 'start' | 'middle' | 'end'): void;
setScrollPosition(top: number, left: number): void;
private getPositionedHorizontalScroll;
private isColumnOutsideViewport;
private getColumnBounds;
private getViewportBounds;
}