ng2-qgrid
Version:
Angular Grid
20 lines (19 loc) • 866 B
TypeScript
import { AfterViewInit, ElementRef, OnInit } from '@angular/core';
import { ModelEventArg } from 'ng2-qgrid/core/infrastructure/model';
import { NavigationModel } from 'ng2-qgrid/core/navigation/navigation.model';
import { RootService } from '../../../infrastructure/component/root.service';
export declare class CellHandlerComponent implements OnInit, AfterViewInit {
private element;
private root;
marker: ElementRef;
private startCell;
private initialSelectionMode;
private initialEditState;
constructor(element: ElementRef, root: RootService);
ngOnInit(): void;
ngAfterViewInit(): void;
updateHandlerFactory(): (e: ModelEventArg<NavigationModel>) => void;
updateMarkerFactory(): (e: ModelEventArg<NavigationModel>) => void;
startBatchEdit(e: any): void;
readonly isMarkerVisible: boolean;
}