e-virt-table
Version:
A powerful data table based on canvas. You can use it as data grid、Microsoft Excel or Google sheets. It supports virtual scroll、cell edit etc.
22 lines (21 loc) • 543 B
TypeScript
import Context from './Context';
export default class EventTable {
ctx: Context;
private visibleHoverCell?;
private resizeObserver;
private mutationObserver;
constructor(ctx: Context);
private init;
/**
* 图标进入和离开事件,包括选中,展开,提示图标等
* @param cell
* @param e
*/
private imageEnterAndLeave;
private isBusy;
private handleBodyEvent;
private handleHeaderEvent;
private handleFooterEvent;
private isInsideBody;
destroy(): void;
}