ng2-qgrid
Version:
Angular Grid
22 lines (17 loc) • 558 B
TypeScript
import { Model } from '../infrastructure/model';
import { Table } from '../dom/table';
import { Bag } from '../dom/bag';
import { Disposable } from '../infrastructure/disposable';
export declare class GridBag {
head: Bag;
body: Bag;
foot: Bag;
}
export declare class GridCtrl extends Disposable {
constructor(model: Model, context: { element: HTMLElement, layerFactory: () => any });
table: Table;
bag: GridBag;
markup: { [key: string]: HTMLElement };
keyDown(e: any, source?: string): string[];
invalidateActive(): void;
}