ag-grid-community
Version:
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
22 lines (21 loc) • 803 B
TypeScript
import { ICellEditorComp, ICellEditorParams } from "../../interfaces/iCellEditor";
import { PopupComponent } from "../../widgets/popupComponent";
export interface ILargeTextEditorParams extends ICellEditorParams {
/** Max number of characters to allow. Default: `200` */
maxLength: number;
/** Number of character rows to display. Default: `10` */
rows: number;
/** Number of character columns to display. Default: `60` */
cols: number;
}
export declare class LargeTextCellEditor extends PopupComponent implements ICellEditorComp {
private static TEMPLATE;
private params;
private eTextArea;
private focusAfterAttached;
constructor();
init(params: ILargeTextEditorParams): void;
private onKeyDown;
afterGuiAttached(): void;
getValue(): any;
}