ag-grid-community
Version:
Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components
24 lines (23 loc) • 1.02 kB
TypeScript
import { BeanStub } from "./context/beanStub";
import { CellPosition } from "./entities/cellPosition";
import { RowPosition } from "./entities/rowPosition";
export declare class CellNavigationService extends BeanStub {
private columnController;
private rowModel;
private pinnedRowModel;
private paginationProxy;
getNextCellToFocus(key: any, lastCellToFocus: CellPosition): CellPosition | null;
private isCellGoodToFocusOn;
private getCellToLeft;
private getCellToRight;
getRowBelow(rowPosition: RowPosition): RowPosition | null;
private getCellBelow;
private isLastRowInContainer;
getRowAbove(rowPosition: RowPosition): RowPosition | null;
private getCellAbove;
private getLastBodyCell;
private getLastFloatingTopRow;
getNextTabbedCell(gridCell: CellPosition, backwards: boolean): CellPosition | null;
getNextTabbedCellForwards(gridCell: CellPosition): CellPosition | null;
getNextTabbedCellBackwards(gridCell: CellPosition): CellPosition | null;
}